pycupra 0.0.10__tar.gz → 0.0.11__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.
- {pycupra-0.0.10/pycupra.egg-info → pycupra-0.0.11}/PKG-INFO +1 -1
- {pycupra-0.0.10 → pycupra-0.0.11}/pycupra/__version__.py +1 -1
- {pycupra-0.0.10 → pycupra-0.0.11}/pycupra/connection.py +1 -1
- {pycupra-0.0.10 → pycupra-0.0.11/pycupra.egg-info}/PKG-INFO +1 -1
- {pycupra-0.0.10 → pycupra-0.0.11}/.gitignore +0 -0
- {pycupra-0.0.10 → pycupra-0.0.11}/LICENSE +0 -0
- {pycupra-0.0.10 → pycupra-0.0.11}/README.md +0 -0
- {pycupra-0.0.10 → pycupra-0.0.11}/cupra_credentials.json.demo +0 -0
- {pycupra-0.0.10 → pycupra-0.0.11}/example/PyCupra.py +0 -0
- {pycupra-0.0.10 → pycupra-0.0.11}/pycupra/__init__.py +0 -0
- {pycupra-0.0.10 → pycupra-0.0.11}/pycupra/const.py +0 -0
- {pycupra-0.0.10 → pycupra-0.0.11}/pycupra/dashboard.py +0 -0
- {pycupra-0.0.10 → pycupra-0.0.11}/pycupra/exceptions.py +0 -0
- {pycupra-0.0.10 → pycupra-0.0.11}/pycupra/utilities.py +0 -0
- {pycupra-0.0.10 → pycupra-0.0.11}/pycupra/vehicle.py +0 -0
- {pycupra-0.0.10 → pycupra-0.0.11}/pycupra.egg-info/SOURCES.txt +0 -0
- {pycupra-0.0.10 → pycupra-0.0.11}/pycupra.egg-info/dependency_links.txt +0 -0
- {pycupra-0.0.10 → pycupra-0.0.11}/pycupra.egg-info/requires.txt +0 -0
- {pycupra-0.0.10 → pycupra-0.0.11}/pycupra.egg-info/top_level.txt +0 -0
- {pycupra-0.0.10 → pycupra-0.0.11}/requirements.txt +0 -0
- {pycupra-0.0.10 → pycupra-0.0.11}/setup.cfg +0 -0
- {pycupra-0.0.10 → pycupra-0.0.11}/setup.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: pycupra
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.11
|
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
|
@@ -612,7 +612,7 @@ class Connection:
|
|
612
612
|
# A new day has begun. Store _sessionRequestCounter in history and reset timestamp and counter
|
613
613
|
self._sessionRequestCounterHistory[self._sessionRequestTimestamp.strftime('%Y-%m-%d')]=self._sessionRequestCounter
|
614
614
|
_LOGGER.info(f'History of the number of API calls:')
|
615
|
-
for key, value in self._sessionRequestCounterHistory.items:
|
615
|
+
for key, value in self._sessionRequestCounterHistory.items():
|
616
616
|
_LOGGER.info(f' Date: {key}: {value} API calls')
|
617
617
|
|
618
618
|
self._sessionRequestTimestamp= datetime.now(tz=None)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: pycupra
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.11
|
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
|
File without changes
|
File without changes
|
File without changes
|