pycupra 0.1.13__py3-none-any.whl → 0.1.14__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.
- example/PyCupra.py +12 -4
- example/PyCupra_ExportDrivingData.py +113 -0
- pycupra/connection.py +75 -67
- pycupra/dashboard.py +36 -36
- pycupra/firebase.py +11 -8
- pycupra/firebase_messaging/fcmpushclient.py +8 -7
- pycupra/firebase_messaging/fcmregister.py +3 -3
- pycupra/utilities.py +2 -26
- pycupra/vehicle.py +299 -226
- {pycupra-0.1.13.dist-info → pycupra-0.1.14.dist-info}/METADATA +6 -2
- {pycupra-0.1.13.dist-info → pycupra-0.1.14.dist-info}/RECORD +14 -13
- {pycupra-0.1.13.dist-info → pycupra-0.1.14.dist-info}/top_level.txt +1 -0
- {pycupra-0.1.13.dist-info → pycupra-0.1.14.dist-info}/WHEEL +0 -0
- {pycupra-0.1.13.dist-info → pycupra-0.1.14.dist-info}/licenses/LICENSE +0 -0
@@ -1,9 +1,9 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: pycupra
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.14
|
4
4
|
Summary: A library to read and send vehicle data via Cupra/Seat portal using the same API calls as the MyCupra/MySeat mobile app.
|
5
5
|
License-Expression: Apache-2.0
|
6
|
-
Requires-Python: >=3.
|
6
|
+
Requires-Python: >=3.12
|
7
7
|
Description-Content-Type: text/markdown
|
8
8
|
License-File: LICENSE
|
9
9
|
Requires-Dist: aiohttp
|
@@ -13,6 +13,10 @@ Requires-Dist: lxml
|
|
13
13
|
Requires-Dist: PyJWT
|
14
14
|
Requires-Dist: xmltodict
|
15
15
|
Requires-Dist: pandas
|
16
|
+
Requires-Dist: pillow
|
17
|
+
Requires-Dist: protobuf
|
18
|
+
Requires-Dist: http-ece
|
19
|
+
Requires-Dist: requests-oauthlib
|
16
20
|
Dynamic: license-file
|
17
21
|
|
18
22
|
# PyCupra
|
@@ -1,12 +1,13 @@
|
|
1
|
-
example/PyCupra.py,sha256=
|
1
|
+
example/PyCupra.py,sha256=rlI6jx7cRgNJswii4ZR1gCdpkO4Lw4vkHU2rjSfbJbc,27078
|
2
|
+
example/PyCupra_ExportDrivingData.py,sha256=h2a8OPgEBEU-XpJFfuECnHqW-hThN7GUOkEDIvom4q4,4961
|
2
3
|
pycupra/__init__.py,sha256=p0880jPkLqOErX3u3qaLboBLOsEHFpe44axApdaGeqI,231
|
3
|
-
pycupra/connection.py,sha256=
|
4
|
+
pycupra/connection.py,sha256=UrTxsN9fE_A19UoYM1cJddHaW4d16WXgDkJJpyBlDQk,94426
|
4
5
|
pycupra/const.py,sha256=5b4uuNUE1AGZHmqQfIZv-76Ad20mJTXXQPGI8TU6FfY,10631
|
5
|
-
pycupra/dashboard.py,sha256=
|
6
|
+
pycupra/dashboard.py,sha256=uB-yLKlBGAMYpsG4JwYxfRRar8XK4H8Oa8EvOEhKsIA,45624
|
6
7
|
pycupra/exceptions.py,sha256=Nq_F79GP8wjHf5lpvPy9TbSIrRHAJrFMo0T1N9TcgSQ,2917
|
7
|
-
pycupra/firebase.py,sha256=
|
8
|
-
pycupra/utilities.py,sha256=
|
9
|
-
pycupra/vehicle.py,sha256=
|
8
|
+
pycupra/firebase.py,sha256=x8Evtg-I6HKDexTGWjjmWMFdLT0d6FI5A7LU1WsC7QE,3562
|
9
|
+
pycupra/utilities.py,sha256=vImZwz-cBGbI6cpcWB3aEFM_5IZUoG_RQ9e4WCYW8WE,1952
|
10
|
+
pycupra/vehicle.py,sha256=eWuwvg3rtUCPKYRDqeDZg5ePLPL6FNfGfZVdmuHq2ao,167580
|
10
11
|
pycupra/firebase_messaging/__init__.py,sha256=oerLHWvEf4qRqu3GxSX6SLY_OYI430ydAiAhKtzyMEM,666
|
11
12
|
pycupra/firebase_messaging/android_checkin.proto,sha256=AW1Ew0iU3NdZpFCocNsG3MxFhEsoRcQH0yMpKhkj0Zg,3109
|
12
13
|
pycupra/firebase_messaging/android_checkin_pb2.py,sha256=-U1oGroFt3KRuGDieae3iTcux6mAfx1TFkE1Q35ul2E,2849
|
@@ -15,14 +16,14 @@ pycupra/firebase_messaging/checkin.proto,sha256=bTIfw9ffqmNRgOLmJjpCrbJsOPLb5jEc
|
|
15
16
|
pycupra/firebase_messaging/checkin_pb2.py,sha256=lFzCIAkYz9NFUpRbVuW-2kM_EaYKVWHeifHS1PV2eHQ,2795
|
16
17
|
pycupra/firebase_messaging/checkin_pb2.pyi,sha256=mHOqbedt5jZDI20jcyFrTMSnQ0f_tq4zkIlHiaSC3xI,14626
|
17
18
|
pycupra/firebase_messaging/const.py,sha256=XMy8kJ37uBSkTpVpdLeSjxk5UIPuvDuo-rxYdgmo2G8,1191
|
18
|
-
pycupra/firebase_messaging/fcmpushclient.py,sha256=
|
19
|
-
pycupra/firebase_messaging/fcmregister.py,sha256=
|
19
|
+
pycupra/firebase_messaging/fcmpushclient.py,sha256=91UBo69o6kRiosab0gKrCBLn9xxlPxBi38X19rSemRE,30549
|
20
|
+
pycupra/firebase_messaging/fcmregister.py,sha256=04uGq7RvjkqrewkK183MOuR3x2yvKSJbp_G33zY9gFo,18087
|
20
21
|
pycupra/firebase_messaging/mcs.proto,sha256=HUgnx-KTQiXIER1bJ0swpCt1W0BILru3lxhwmBezj-A,8265
|
21
22
|
pycupra/firebase_messaging/mcs_pb2.py,sha256=nwXY7IDgLYPxgpSGs6wyTSyYDdomQsyGqH8R8EgODLg,7733
|
22
23
|
pycupra/firebase_messaging/mcs_pb2.pyi,sha256=HfIhInC3wRg8_caKwUm-V3knE2jTdEQvBy6uXgQ5rHY,33959
|
23
24
|
pycupra/firebase_messaging/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
24
|
-
pycupra-0.1.
|
25
|
-
pycupra-0.1.
|
26
|
-
pycupra-0.1.
|
27
|
-
pycupra-0.1.
|
28
|
-
pycupra-0.1.
|
25
|
+
pycupra-0.1.14.dist-info/licenses/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
|
26
|
+
pycupra-0.1.14.dist-info/METADATA,sha256=YlElaOaKu5Yidsl-PyUFdTIdVweCE58WqiI_Pi7CcDQ,3684
|
27
|
+
pycupra-0.1.14.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
28
|
+
pycupra-0.1.14.dist-info/top_level.txt,sha256=9WIFIp_UVGiU7u96_gEPwY2c4EtS48SLcMEWJmoLypw,21
|
29
|
+
pycupra-0.1.14.dist-info/RECORD,,
|
File without changes
|
File without changes
|