diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 055207cc..9140372f 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -15,7 +15,7 @@ Types of Contributions Report Bugs ~~~~~~~~~~~ -Report bugs at https://github.com/fuatakgun/hyundai_kia_connect_api/issues. +Report bugs at https://github.com/Hyundai-Kia-Connect/hyundai_kia_connect_api/issues. If you are reporting a bug, please include: @@ -45,7 +45,7 @@ articles, and such. Submit Feedback ~~~~~~~~~~~~~~~ -The best way to send feedback is to file an issue at https://github.com/fuatakgun/hyundai_kia_connect_api/issues. +The best way to send feedback is to file an issue at https://github.com/Hyundai-Kia-Connect/hyundai_kia_connect_api/issues. If you are proposing a feature: diff --git a/README.rst b/README.rst index 061171cd..98c27441 100644 --- a/README.rst +++ b/README.rst @@ -6,14 +6,14 @@ I no longer have a Kia or Hyundai so don't maintain this like I used to. Others Introduction ============ -This is a Kia UVO, Hyundai Bluelink, Genesis Connect(Canada Only) written in python. It is primary consumed by home assistant. If you are looking for a home assistant Kia / Hyundai implementation please look here: https://github.com/fuatakgun/kia_uvo. Much of this base code came from reading bluelinky and contributions to the kia_uvo home assistant project. +This is a Kia UVO, Hyundai Bluelink, Genesis Connect(Canada Only) written in python. It is primary consumed by home assistant. If you are looking for a home assistant Kia / Hyundai implementation please look here: https://github.com/Hyundai-Kia-Connect/kia_uvo. Much of this base code came from reading bluelinky (https://github.com/Hacksore/bluelinky) and contributions to the kia_uvo home assistant project. Usage ===== This package is designed to simplify the complexity of using multiple regions. It attempts to standardize the usage regardless of what brand or region the car is in. That isn't always possible though, in particular some features differ from one to the next. -Python 3.9 or newer is required to use this package. Vehicle manager is the key class that is called to manage the vehicle lists. One vehicle manager should be used per login. Key data points required to instantiate vehicle manager are:: +Python 3.10 or newer is required to use this package. Vehicle manager is the key class that is called to manage the vehicle lists. One vehicle manager should be used per login. Key data points required to instantiate vehicle manager are:: region: int brand: int, @@ -21,7 +21,7 @@ Python 3.9 or newer is required to use this package. Vehicle manager is the key password: str pin: str (required for CA, and potentially USA, otherwise pass a blank string) -Key values for the int exist in the constant(https://github.com/fuatakgun/hyundai_kia_connect_api/blob/master/hyundai_kia_connect_api/const.py) file as:: +Key values for the int exist in the constant(https://github.com/Hyundai-Kia-Connect/hyundai_kia_connect_api/blob/master/hyundai_kia_connect_api/const.py) file as:: REGIONS = {1: REGION_EUROPE, 2: REGION_CANADA, 3: REGION_USA, 4: REGION_CHINA, 5: REGION_AUSTRALIA} BRANDS = {1: BRAND_KIA, 2: BRAND_HYUNDAI, 3: BRAND_GENESIS} diff --git a/docs/installation.rst b/docs/installation.rst index b078cc4b..4319ca5b 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -32,13 +32,13 @@ You can either clone the public repository: .. code-block:: console - $ git clone git://github.com/fuatakgun/hyundai_kia_connect_api + $ git clone git://github.com/Hyundai-Kia-Connect/hyundai_kia_connect_api Or download the `tarball`_: .. code-block:: console - $ curl -OJL https://github.com/fuatakgun/hyundai_kia_connect_api/tarball/master + $ curl -OJL https://github.com/Hyundai-Kia-Connect/hyundai_kia_connect_api/tarball/master Once you have a copy of the source, you can install it with: @@ -47,5 +47,5 @@ Once you have a copy of the source, you can install it with: $ python setup.py install -.. _Github repo: https://github.com/fuatakgun/hyundai_kia_connect_api -.. _tarball: https://github.com/fuatakgun/hyundai_kia_connect_api/tarball/master +.. _Github repo: https://github.com/Hyundai-Kia-Connect/hyundai_kia_connect_api +.. _tarball: https://github.com/Hyundai-Kia-Connect/hyundai_kia_connect_api/tarball/master diff --git a/setup.py b/setup.py index 10e84561..d39773a8 100644 --- a/setup.py +++ b/setup.py @@ -43,7 +43,7 @@ ), test_suite="tests", tests_require=test_requirements, - url="https://github.com/fuatakgun/hyundai_kia_connect_api", + url="https://github.com/Hyundai-Kia-Connect/hyundai_kia_connect_api", version="3.24.2", zip_safe=False, )