hyundai-kia-connect-api 3.32.7__py2.py3-none-any.whl → 3.32.9__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- hyundai_kia_connect_api/KiaUvoApiCA.py +1 -1
- hyundai_kia_connect_api/bluelink.py +3 -3
- {hyundai_kia_connect_api-3.32.7.dist-info → hyundai_kia_connect_api-3.32.9.dist-info}/METADATA +1 -1
- {hyundai_kia_connect_api-3.32.7.dist-info → hyundai_kia_connect_api-3.32.9.dist-info}/RECORD +9 -9
- {hyundai_kia_connect_api-3.32.7.dist-info → hyundai_kia_connect_api-3.32.9.dist-info}/AUTHORS.rst +0 -0
- {hyundai_kia_connect_api-3.32.7.dist-info → hyundai_kia_connect_api-3.32.9.dist-info}/LICENSE +0 -0
- {hyundai_kia_connect_api-3.32.7.dist-info → hyundai_kia_connect_api-3.32.9.dist-info}/WHEEL +0 -0
- {hyundai_kia_connect_api-3.32.7.dist-info → hyundai_kia_connect_api-3.32.9.dist-info}/entry_points.txt +0 -0
- {hyundai_kia_connect_api-3.32.7.dist-info → hyundai_kia_connect_api-3.32.9.dist-info}/top_level.txt +0 -0
@@ -172,7 +172,7 @@ class KiaUvoApiCA(ApiImpl):
|
|
172
172
|
vehicle: Vehicle = Vehicle(
|
173
173
|
id=entry["vehicleId"],
|
174
174
|
name=entry["nickName"],
|
175
|
-
model=entry.get(
|
175
|
+
model=entry.get("modelName"),
|
176
176
|
year=int(entry["modelYear"]),
|
177
177
|
VIN=entry["vin"],
|
178
178
|
engine_type=entry_engine_type,
|
@@ -372,7 +372,7 @@ def cmd_info(vm, args):
|
|
372
372
|
print_vehicle(vehicle)
|
373
373
|
if args.json:
|
374
374
|
data = {id: vehicle_to_dict(v) for id, v in vm.vehicles.items()}
|
375
|
-
json.dump(data, args.json, separators=(",", ":"), cls=DateTimeEncoder)
|
375
|
+
json.dump(data, args.json, separators=(",", ":"), cls=DateTimeEncoder, indent=4)
|
376
376
|
return 0
|
377
377
|
|
378
378
|
|
@@ -382,7 +382,7 @@ def main():
|
|
382
382
|
default_pin = None
|
383
383
|
if os.environ.get("BLUELINK_PIN", ""):
|
384
384
|
try:
|
385
|
-
default_pin =
|
385
|
+
default_pin = str(os.environ["BLUELINK_PIN"])
|
386
386
|
except ValueError:
|
387
387
|
print("Invalid BLUELINK_PIN environment variable", file=sys.stderr)
|
388
388
|
return 1
|
@@ -414,7 +414,7 @@ def main():
|
|
414
414
|
)
|
415
415
|
parser.add_argument(
|
416
416
|
"--pin",
|
417
|
-
type=
|
417
|
+
type=str,
|
418
418
|
default=default_pin,
|
419
419
|
help="Bluelink account pin, use env var BLUELINK_PIN",
|
420
420
|
required=not default_pin,
|
{hyundai_kia_connect_api-3.32.7.dist-info → hyundai_kia_connect_api-3.32.9.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.2
|
2
2
|
Name: hyundai_kia_connect_api
|
3
|
-
Version: 3.32.
|
3
|
+
Version: 3.32.9
|
4
4
|
Summary: Python Boilerplate contains all the boilerplate you need to create a Python package.
|
5
5
|
Home-page: https://github.com/Hyundai-Kia-Connect/hyundai_kia_connect_api
|
6
6
|
Author: Fuat Akgun
|
{hyundai_kia_connect_api-3.32.7.dist-info → hyundai_kia_connect_api-3.32.9.dist-info}/RECORD
RENAMED
@@ -2,7 +2,7 @@ hyundai_kia_connect_api/ApiImpl.py,sha256=sgUXOcQnBMTVylxOLeqnYOGnz9KqLqRClRpE12
|
|
2
2
|
hyundai_kia_connect_api/ApiImplType1.py,sha256=PnKwpbCoYGOXBWzBLIlDSrC6daIYeW9qlfW7TM4HCU0,12184
|
3
3
|
hyundai_kia_connect_api/HyundaiBlueLinkApiUSA.py,sha256=Tx-L4ZWiPhq-uHcjWSUzjLEsfunV6nzyzqQpjPTYuIo,36831
|
4
4
|
hyundai_kia_connect_api/KiaUvoApiAU.py,sha256=tslh0gzvPBwYJmcWlf9B0l7PyYZdy2e7GqpRkl8_Svk,48471
|
5
|
-
hyundai_kia_connect_api/KiaUvoApiCA.py,sha256=
|
5
|
+
hyundai_kia_connect_api/KiaUvoApiCA.py,sha256=tRJfmUxJTsdvA_to9ZR3QmxkqAIMZF1GM7ffHCEqMPA,31771
|
6
6
|
hyundai_kia_connect_api/KiaUvoApiCN.py,sha256=cwIPZ0dU6HolKdooUQeQKlLAic6YU8dQmNs0VQDBgpQ,47035
|
7
7
|
hyundai_kia_connect_api/KiaUvoApiEU.py,sha256=TxgO2dfLjKSKfSkRMoTL_fbmzRFRPb8oJ9IDztD50Ug,71300
|
8
8
|
hyundai_kia_connect_api/KiaUvoApiUSA.py,sha256=G2sGtv88sBZuAz8qKYq_3_JNXIkxEjOBAzwM6R8GUi0,30548
|
@@ -10,14 +10,14 @@ hyundai_kia_connect_api/Token.py,sha256=ZsPvXh1ID7FUTGHAqhZUZyrKT7xVbOtIn6FRJn4Y
|
|
10
10
|
hyundai_kia_connect_api/Vehicle.py,sha256=raCMzJsLuJnVHlFJ16VKdKat55L0uivbbcZRDCGWTxI,18793
|
11
11
|
hyundai_kia_connect_api/VehicleManager.py,sha256=SfGuCT0foCJqUNNLXs_9lRR5XGQ7xd-fodTIs3JEl0o,11167
|
12
12
|
hyundai_kia_connect_api/__init__.py,sha256=IkyVeIMbcFJZgLaiiNnUVA1Ferxvrm1bXHKVg01cxvc,319
|
13
|
-
hyundai_kia_connect_api/bluelink.py,sha256=
|
13
|
+
hyundai_kia_connect_api/bluelink.py,sha256=JiNIHl-Qi8zwqyN6ywKg5CdXOLT74WkvpjVcn-rYEjI,19730
|
14
14
|
hyundai_kia_connect_api/const.py,sha256=scBlhrMims0W6_pESVVdQz2uUxczg2cf2qDQ7avbhVo,2174
|
15
15
|
hyundai_kia_connect_api/exceptions.py,sha256=m7gyDnvA5OVAK4EXSP_ZwE0s0uV8HsGUV0tiYwqofK0,1343
|
16
16
|
hyundai_kia_connect_api/utils.py,sha256=J0aXUX-nKIoS3XbelatNh-DZlHRU2_DYz_Mg_ZUKQJU,1957
|
17
|
-
hyundai_kia_connect_api-3.32.
|
18
|
-
hyundai_kia_connect_api-3.32.
|
19
|
-
hyundai_kia_connect_api-3.32.
|
20
|
-
hyundai_kia_connect_api-3.32.
|
21
|
-
hyundai_kia_connect_api-3.32.
|
22
|
-
hyundai_kia_connect_api-3.32.
|
23
|
-
hyundai_kia_connect_api-3.32.
|
17
|
+
hyundai_kia_connect_api-3.32.9.dist-info/AUTHORS.rst,sha256=T77OE1hrQF6YyDE6NbdMKyL66inHt7dnjHAzblwuk2A,155
|
18
|
+
hyundai_kia_connect_api-3.32.9.dist-info/LICENSE,sha256=49hmc755oyMwKdZ-2epiorjStRB0PfcZR1w5_NXZPgs,1068
|
19
|
+
hyundai_kia_connect_api-3.32.9.dist-info/METADATA,sha256=Ac54U9EhUgWDF8oTkE8tC1-d4DUtOqFI_h4KFl-75so,6872
|
20
|
+
hyundai_kia_connect_api-3.32.9.dist-info/WHEEL,sha256=9Hm2OB-j1QcCUq9Jguht7ayGIIZBRTdOXD1qg9cCgPM,109
|
21
|
+
hyundai_kia_connect_api-3.32.9.dist-info/entry_points.txt,sha256=XfrroRdyC_9q9VXjEZe5SdRPhkQyCCE4S7ZK6XSKelA,67
|
22
|
+
hyundai_kia_connect_api-3.32.9.dist-info/top_level.txt,sha256=otZ7J_fN-s3EW4jD-kAearIo2OIzhQLR8DNEHIaFfds,24
|
23
|
+
hyundai_kia_connect_api-3.32.9.dist-info/RECORD,,
|
{hyundai_kia_connect_api-3.32.7.dist-info → hyundai_kia_connect_api-3.32.9.dist-info}/AUTHORS.rst
RENAMED
File without changes
|
{hyundai_kia_connect_api-3.32.7.dist-info → hyundai_kia_connect_api-3.32.9.dist-info}/LICENSE
RENAMED
File without changes
|
File without changes
|
File without changes
|
{hyundai_kia_connect_api-3.32.7.dist-info → hyundai_kia_connect_api-3.32.9.dist-info}/top_level.txt
RENAMED
File without changes
|