tesla-fleet-api 1.0.17__py3-none-any.whl → 1.1.0__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.
- tesla_fleet_api/__init__.py +1 -1
- tesla_fleet_api/exceptions.py +26 -6
- tesla_fleet_api/tesla/vehicle/commands.py +6 -4
- tesla_fleet_api/tesla/vehicle/fleet.py +5 -2
- tesla_fleet_api/tesla/vehicle/proto/car_server_pb2.py +310 -160
- tesla_fleet_api/tesla/vehicle/proto/car_server_pb2.pyi +823 -7
- tesla_fleet_api/tesla/vehicle/proto/common_pb2.py +4 -2
- tesla_fleet_api/tesla/vehicle/proto/common_pb2.pyi +2 -1
- tesla_fleet_api/tesla/vehicle/proto/errors_pb2.py +4 -2
- tesla_fleet_api/tesla/vehicle/proto/keys_pb2.py +4 -2
- tesla_fleet_api/tesla/vehicle/proto/managed_charging_pb2.py +4 -2
- tesla_fleet_api/tesla/vehicle/proto/signatures_pb2.py +4 -2
- tesla_fleet_api/tesla/vehicle/proto/signatures_pb2.pyi +2 -1
- tesla_fleet_api/tesla/vehicle/proto/universal_message_pb2.py +4 -2
- tesla_fleet_api/tesla/vehicle/proto/universal_message_pb2.pyi +2 -1
- tesla_fleet_api/tesla/vehicle/proto/vcsec_pb2.py +27 -25
- tesla_fleet_api/tesla/vehicle/proto/vcsec_pb2.pyi +53 -2
- tesla_fleet_api/tesla/vehicle/proto/vehicle_pb2.py +4 -2
- tesla_fleet_api/tesla/vehicle/proto/vehicle_pb2.pyi +14 -13
- tesla_fleet_api/teslemetry/teslemetry.py +1 -1
- {tesla_fleet_api-1.0.17.dist-info → tesla_fleet_api-1.1.0.dist-info}/METADATA +1 -2
- {tesla_fleet_api-1.0.17.dist-info → tesla_fleet_api-1.1.0.dist-info}/RECORD +25 -25
- {tesla_fleet_api-1.0.17.dist-info → tesla_fleet_api-1.1.0.dist-info}/WHEEL +1 -1
- {tesla_fleet_api-1.0.17.dist-info → tesla_fleet_api-1.1.0.dist-info}/licenses/LICENSE +0 -0
- {tesla_fleet_api-1.0.17.dist-info → tesla_fleet_api-1.1.0.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: tesla_fleet_api
|
3
|
-
Version: 1.0
|
3
|
+
Version: 1.1.0
|
4
4
|
Summary: Tesla Fleet API library for Python
|
5
5
|
Author-email: Brett Adams <hello@teslemetry.com>
|
6
6
|
License-Expression: Apache-2.0
|
@@ -156,7 +156,6 @@ async def main():
|
|
156
156
|
|
157
157
|
try:
|
158
158
|
vehicle = VehicleSigned(api, "<vin>")
|
159
|
-
await vehicle.handshake()
|
160
159
|
data = await vehicle.wake_up()
|
161
160
|
print(data)
|
162
161
|
except TeslaFleetError as e:
|
@@ -1,6 +1,6 @@
|
|
1
|
-
tesla_fleet_api/__init__.py,sha256=
|
1
|
+
tesla_fleet_api/__init__.py,sha256=X3YzbfnwveSOlUru-bA37erW4mlna1FzIhe7JaxI_dY,474
|
2
2
|
tesla_fleet_api/const.py,sha256=cu9jvvFTLOw56bL78lIPWJKlb35T9CYACI5pBT6DBQI,3881
|
3
|
-
tesla_fleet_api/exceptions.py,sha256=
|
3
|
+
tesla_fleet_api/exceptions.py,sha256=39O76jiybiAQSjfVnp4KMJz7z9TP1WYBZ1zovN_Aock,36435
|
4
4
|
tesla_fleet_api/tesla/__init__.py,sha256=ahqqQigZbXfysOpo28qUudUfWrQfKRpD_1az368Sjr0,823
|
5
5
|
tesla_fleet_api/tesla/bluetooth.py,sha256=lyPRVf1YdcElrYBsKOMCaLwMPE9rO7Iw1a6nE7VUZ94,2369
|
6
6
|
tesla_fleet_api/tesla/charging.py,sha256=D7I7cAf-3-95sIjyP6wpVqCq9Cppj6U-VPFQGpQQ8bs,1704
|
@@ -12,39 +12,39 @@ tesla_fleet_api/tesla/tesla.py,sha256=Gs8-L3OsEMhs1N_vdDx-E46bOHKGowXTBxmRiP8NKh
|
|
12
12
|
tesla_fleet_api/tesla/user.py,sha256=w8rwiAOIFjuDus8M0RpZ0wucJtw8kYFKtJfYVk7Ekr0,1194
|
13
13
|
tesla_fleet_api/tesla/vehicle/__init__.py,sha256=DKQA9lIAGcya5cHj4AsNc04pcQSVHn18htTrsvN_fRs,498
|
14
14
|
tesla_fleet_api/tesla/vehicle/bluetooth.py,sha256=CSUOx2rTYHM1iCShtZ3vu7kR-_m8E2dvNSLEksFqe6g,21034
|
15
|
-
tesla_fleet_api/tesla/vehicle/commands.py,sha256=
|
16
|
-
tesla_fleet_api/tesla/vehicle/fleet.py,sha256=
|
15
|
+
tesla_fleet_api/tesla/vehicle/commands.py,sha256=lcsMWMax-8o9n9j9XxT4pJSurmS6XKvwmtPVQyb943c,51516
|
16
|
+
tesla_fleet_api/tesla/vehicle/fleet.py,sha256=u07YhuYM5RqaQozfYijrVSD14t-3P49W0TcEhd7rHUg,32195
|
17
17
|
tesla_fleet_api/tesla/vehicle/signed.py,sha256=uZz2cYxzjujWVx7zIG7a1FkDpoNTaUK4_kU2ZCR3Fqs,1339
|
18
18
|
tesla_fleet_api/tesla/vehicle/vehicle.py,sha256=IBvRO6qGkUf4bi-pFongA9fIe9iScvz_wGXtzEJXilY,870
|
19
19
|
tesla_fleet_api/tesla/vehicle/vehicles.py,sha256=c1KFTAYDvuTVNjM5O23KvT54UbNwo3ofFVpfkY-Mq5Y,2640
|
20
20
|
tesla_fleet_api/tesla/vehicle/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
21
21
|
tesla_fleet_api/tesla/vehicle/proto/__init__.pyi,sha256=qFXWNIgl71wB260u-XPzaAwWAHL6krw21q-aXnBtop0,252
|
22
|
-
tesla_fleet_api/tesla/vehicle/proto/car_server_pb2.py,sha256=
|
23
|
-
tesla_fleet_api/tesla/vehicle/proto/car_server_pb2.pyi,sha256=
|
24
|
-
tesla_fleet_api/tesla/vehicle/proto/common_pb2.py,sha256=
|
25
|
-
tesla_fleet_api/tesla/vehicle/proto/common_pb2.pyi,sha256=
|
26
|
-
tesla_fleet_api/tesla/vehicle/proto/errors_pb2.py,sha256=
|
22
|
+
tesla_fleet_api/tesla/vehicle/proto/car_server_pb2.py,sha256=1eFBMyb3JVEXk70cAD2VcxR-u8r-HcavCfn5F0aapck,55607
|
23
|
+
tesla_fleet_api/tesla/vehicle/proto/car_server_pb2.pyi,sha256=2ZBCsnl4T9_7yGqVbBPjw00FT5UvcZPaKrBWc4VjzLc,91339
|
24
|
+
tesla_fleet_api/tesla/vehicle/proto/common_pb2.py,sha256=Q-sCxsL2yA2ocwiSaTA5wjWET5txW9vyFAWm0dvhwsc,4107
|
25
|
+
tesla_fleet_api/tesla/vehicle/proto/common_pb2.pyi,sha256=EM417mcDXWWMrsfLUt2ZIvsjq7HPiNU4HTEu2JKT-oE,5039
|
26
|
+
tesla_fleet_api/tesla/vehicle/proto/errors_pb2.py,sha256=X9r7e07AytvlR9dIVOed9euCbJXn_6gHb2il98qjrxQ,1807
|
27
27
|
tesla_fleet_api/tesla/vehicle/proto/errors_pb2.pyi,sha256=CNsAR7Oe6wavnqjzhInEyAFxMio6TtXfaNT0DUztn6o,1478
|
28
|
-
tesla_fleet_api/tesla/vehicle/proto/keys_pb2.py,sha256
|
28
|
+
tesla_fleet_api/tesla/vehicle/proto/keys_pb2.py,sha256=pNFzJ-YqJzewEfmkvNO1S0R_O1eQJYtJwD3jEX4KC40,1426
|
29
29
|
tesla_fleet_api/tesla/vehicle/proto/keys_pb2.pyi,sha256=HH-TfhE5ihwmoPCGdiVnZ5B7KkaMJglEpusgLc1J02M,676
|
30
|
-
tesla_fleet_api/tesla/vehicle/proto/managed_charging_pb2.py,sha256=
|
30
|
+
tesla_fleet_api/tesla/vehicle/proto/managed_charging_pb2.py,sha256=4ZghZwYGD3B6Ew3rHrKZbf9aVved-2rLROQmks_NicM,1616
|
31
31
|
tesla_fleet_api/tesla/vehicle/proto/managed_charging_pb2.pyi,sha256=SqEmrfknTfzYTUYHtsoCpt1Fw2YpU3OyQllX247UfyQ,1227
|
32
|
-
tesla_fleet_api/tesla/vehicle/proto/signatures_pb2.py,sha256=
|
33
|
-
tesla_fleet_api/tesla/vehicle/proto/signatures_pb2.pyi,sha256
|
34
|
-
tesla_fleet_api/tesla/vehicle/proto/universal_message_pb2.py,sha256=
|
35
|
-
tesla_fleet_api/tesla/vehicle/proto/universal_message_pb2.pyi,sha256=
|
36
|
-
tesla_fleet_api/tesla/vehicle/proto/vcsec_pb2.py,sha256=
|
37
|
-
tesla_fleet_api/tesla/vehicle/proto/vcsec_pb2.pyi,sha256=
|
38
|
-
tesla_fleet_api/tesla/vehicle/proto/vehicle_pb2.py,sha256=
|
39
|
-
tesla_fleet_api/tesla/vehicle/proto/vehicle_pb2.pyi,sha256=
|
32
|
+
tesla_fleet_api/tesla/vehicle/proto/signatures_pb2.py,sha256=b2VSKrQ5HH7QlNDWykZGqM8S3r0Iou9yQ5STuQLHX-Q,4914
|
33
|
+
tesla_fleet_api/tesla/vehicle/proto/signatures_pb2.pyi,sha256=2od4WSv804hXPlZo_ncx2WmYp9QizyMQq60s7rLeBeM,6128
|
34
|
+
tesla_fleet_api/tesla/vehicle/proto/universal_message_pb2.py,sha256=qk1IWCeU9so2lR0lF1kc_tCxASs-cAIEqntEBoKIi8U,5280
|
35
|
+
tesla_fleet_api/tesla/vehicle/proto/universal_message_pb2.pyi,sha256=GbniOqyBaaOZF-fqButitZgCCy_6MsB_SNjN8PzzPaE,7674
|
36
|
+
tesla_fleet_api/tesla/vehicle/proto/vcsec_pb2.py,sha256=2q0KO6kjx9heiT4nvQ1YsabupKIY9W4kB-BBQpyHSV8,17597
|
37
|
+
tesla_fleet_api/tesla/vehicle/proto/vcsec_pb2.pyi,sha256=tXsoZtCtKjxu7WayydmFBipJymElWrfN2N-ekMfU0So,32042
|
38
|
+
tesla_fleet_api/tesla/vehicle/proto/vehicle_pb2.py,sha256=lLbiBY397VOUQvfJQm-5Rkb0J0bO4q2_U2mSo4iC3qA,44888
|
39
|
+
tesla_fleet_api/tesla/vehicle/proto/vehicle_pb2.pyi,sha256=YkWqeAki8s3u311ewYQ3yaTGFpntIcqSFcPO3Ho9gfE,74620
|
40
40
|
tesla_fleet_api/teslemetry/__init__.py,sha256=BFi16_y-1wRF8XhtgHsYM22eT8T1hTAGJ10S3Q9rWHI,464
|
41
|
-
tesla_fleet_api/teslemetry/teslemetry.py,sha256=
|
41
|
+
tesla_fleet_api/teslemetry/teslemetry.py,sha256=r26kS1JqYj2KzRQpK_Kn_v2xz42yho2eFs4FSGIo79Y,2980
|
42
42
|
tesla_fleet_api/teslemetry/vehicles.py,sha256=IJMRKb3jrW9ZSdJrCQ5wOYYZGVbFvSVza24Zpdh4d_0,2067
|
43
43
|
tesla_fleet_api/tessie/__init__.py,sha256=8HiaMLz1RueRoT5PSF1Y7iRr0-RV6ujgOH2RBSSUFk4,436
|
44
44
|
tesla_fleet_api/tessie/tessie.py,sha256=UByX0BmDcqLPiW8ofNuGmMcjXvaWRn3taC68Ji80Yf8,2666
|
45
45
|
tesla_fleet_api/tessie/vehicles.py,sha256=Cdp0pt2Z8bzK5T9wQ8_KubGSZ3Gevx1Q18kqJqEUxfs,1011
|
46
|
-
tesla_fleet_api-1.0.
|
47
|
-
tesla_fleet_api-1.0.
|
48
|
-
tesla_fleet_api-1.0.
|
49
|
-
tesla_fleet_api-1.0.
|
50
|
-
tesla_fleet_api-1.0.
|
46
|
+
tesla_fleet_api-1.1.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
47
|
+
tesla_fleet_api-1.1.0.dist-info/METADATA,sha256=nMFMXwpxyOZPaEot8PfYKuSj24OxQRfQzs2lyN_qoO8,6720
|
48
|
+
tesla_fleet_api-1.1.0.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
|
49
|
+
tesla_fleet_api-1.1.0.dist-info/top_level.txt,sha256=jeNbog_1saXBFrGpom9WyPWmilxsyP3szL_G7JLWQfM,16
|
50
|
+
tesla_fleet_api-1.1.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|