pycupra 0.1.1__tar.gz → 0.1.3__tar.gz

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.
Files changed (37) hide show
  1. {pycupra-0.1.1/pycupra.egg-info → pycupra-0.1.3}/PKG-INFO +1 -1
  2. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra/__version__.py +1 -1
  3. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra/firebase_messaging/__init__.py +3 -0
  4. {pycupra-0.1.1 → pycupra-0.1.3/pycupra.egg-info}/PKG-INFO +1 -1
  5. {pycupra-0.1.1 → pycupra-0.1.3}/.gitignore +0 -0
  6. {pycupra-0.1.1 → pycupra-0.1.3}/LICENSE +0 -0
  7. {pycupra-0.1.1 → pycupra-0.1.3}/README.md +0 -0
  8. {pycupra-0.1.1 → pycupra-0.1.3}/example/PyCupra.py +0 -0
  9. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra/__init__.py +0 -0
  10. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra/connection.py +0 -0
  11. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra/const.py +0 -0
  12. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra/dashboard.py +0 -0
  13. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra/exceptions.py +0 -0
  14. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra/firebase.py +0 -0
  15. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra/firebase_messaging/const.py +0 -0
  16. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra/firebase_messaging/fcmpushclient.py +0 -0
  17. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra/firebase_messaging/fcmregister.py +0 -0
  18. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra/firebase_messaging/proto/android_checkin.proto +0 -0
  19. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra/firebase_messaging/proto/android_checkin_pb2.py +0 -0
  20. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra/firebase_messaging/proto/android_checkin_pb2.pyi +0 -0
  21. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra/firebase_messaging/proto/checkin.proto +0 -0
  22. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra/firebase_messaging/proto/checkin_pb2.py +0 -0
  23. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra/firebase_messaging/proto/checkin_pb2.pyi +0 -0
  24. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra/firebase_messaging/proto/mcs.proto +0 -0
  25. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra/firebase_messaging/proto/mcs_pb2.py +0 -0
  26. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra/firebase_messaging/proto/mcs_pb2.pyi +0 -0
  27. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra/firebase_messaging/py.typed +0 -0
  28. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra/utilities.py +0 -0
  29. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra/vehicle.py +0 -0
  30. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra.egg-info/SOURCES.txt +0 -0
  31. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra.egg-info/dependency_links.txt +0 -0
  32. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra.egg-info/requires.txt +0 -0
  33. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra.egg-info/top_level.txt +0 -0
  34. {pycupra-0.1.1 → pycupra-0.1.3}/pycupra_credentials.json.demo +0 -0
  35. {pycupra-0.1.1 → pycupra-0.1.3}/requirements.txt +0 -0
  36. {pycupra-0.1.1 → pycupra-0.1.3}/setup.cfg +0 -0
  37. {pycupra-0.1.1 → pycupra-0.1.3}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pycupra
3
- Version: 0.1.1
3
+ Version: 0.1.3
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
  Home-page: https://github.com/WulfgarW/pycupra
6
6
  Author: WulfgarW
@@ -3,4 +3,4 @@ pycupra - A Python 3 library for interacting with the My Cupra/My Seat portal.
3
3
 
4
4
  For more details and documentation, visit the github page at https://github.com/WulfgarW/pycupra
5
5
  """
6
- __version__ = "0.1.1"
6
+ __version__ = "0.1.3"
@@ -12,6 +12,9 @@ from .proto.mcs_pb2 import ( # pylint: disable=no-name-in-module
12
12
  StreamErrorStanza,
13
13
  )
14
14
 
15
+ from .proto import android_checkin_pb2
16
+ from .proto import checkin_pb2
17
+
15
18
  __all__ = [
16
19
  "FcmPushClientConfig",
17
20
  "FcmPushClient",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pycupra
3
- Version: 0.1.1
3
+ Version: 0.1.3
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
  Home-page: https://github.com/WulfgarW/pycupra
6
6
  Author: WulfgarW
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes