e-data 1.2.16__tar.gz → 1.2.17__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 (25) hide show
  1. {e-data-1.2.16/e_data.egg-info → e-data-1.2.17}/PKG-INFO +1 -1
  2. {e-data-1.2.16 → e-data-1.2.17/e_data.egg-info}/PKG-INFO +1 -1
  3. {e-data-1.2.16 → e-data-1.2.17}/edata/helpers.py +2 -2
  4. {e-data-1.2.16 → e-data-1.2.17}/setup.py +1 -1
  5. {e-data-1.2.16 → e-data-1.2.17}/LICENSE +0 -0
  6. {e-data-1.2.16 → e-data-1.2.17}/MANIFEST.in +0 -0
  7. {e-data-1.2.16 → e-data-1.2.17}/README.md +0 -0
  8. {e-data-1.2.16 → e-data-1.2.17}/e_data.egg-info/SOURCES.txt +0 -0
  9. {e-data-1.2.16 → e-data-1.2.17}/e_data.egg-info/dependency_links.txt +0 -0
  10. {e-data-1.2.16 → e-data-1.2.17}/e_data.egg-info/requires.txt +0 -0
  11. {e-data-1.2.16 → e-data-1.2.17}/e_data.egg-info/top_level.txt +0 -0
  12. {e-data-1.2.16 → e-data-1.2.17}/edata/__init__.py +0 -0
  13. {e-data-1.2.16 → e-data-1.2.17}/edata/connectors/__init__.py +0 -0
  14. {e-data-1.2.16 → e-data-1.2.17}/edata/connectors/datadis.py +0 -0
  15. {e-data-1.2.16 → e-data-1.2.17}/edata/connectors/redata.py +0 -0
  16. {e-data-1.2.16 → e-data-1.2.17}/edata/const.py +0 -0
  17. {e-data-1.2.16 → e-data-1.2.17}/edata/definitions.py +0 -0
  18. {e-data-1.2.16 → e-data-1.2.17}/edata/processors/__init__.py +0 -0
  19. {e-data-1.2.16 → e-data-1.2.17}/edata/processors/base.py +0 -0
  20. {e-data-1.2.16 → e-data-1.2.17}/edata/processors/billing.py +0 -0
  21. {e-data-1.2.16 → e-data-1.2.17}/edata/processors/consumption.py +0 -0
  22. {e-data-1.2.16 → e-data-1.2.17}/edata/processors/maximeter.py +0 -0
  23. {e-data-1.2.16 → e-data-1.2.17}/edata/processors/utils.py +0 -0
  24. {e-data-1.2.16 → e-data-1.2.17}/edata/storage.py +0 -0
  25. {e-data-1.2.16 → e-data-1.2.17}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: e-data
3
- Version: 1.2.16
3
+ Version: 1.2.17
4
4
  Summary: Python library for managing spanish energy data from various web providers
5
5
  Home-page: https://github.com/uvejota/python-edata
6
6
  Author: VMG
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: e-data
3
- Version: 1.2.16
3
+ Version: 1.2.17
4
4
  Summary: Python library for managing spanish energy data from various web providers
5
5
  Home-page: https://github.com/uvejota/python-edata
6
6
  Author: VMG
@@ -53,7 +53,7 @@ class EdataHelper:
53
53
  self.attributes = {}
54
54
  self._storage_dir = storage_dir_path
55
55
  self._cups = cups
56
- self._scups = cups[-5:0]
56
+ self._scups = cups[-5:]
57
57
  self._authorized_nif = datadis_authorized_nif
58
58
  self.last_update = {x: datetime(1970, 1, 1) for x in self.data}
59
59
  self._date_from = datetime(1970, 1, 1)
@@ -306,7 +306,7 @@ class EdataHelper:
306
306
  ),
307
307
  )
308
308
  _LOGGER.info(
309
- "%s, missing maximeter: %s",
309
+ "%s: missing maximeter: %s",
310
310
  self._scups,
311
311
  ", ".join(
312
312
  [
@@ -20,7 +20,7 @@ URL = "https://github.com/uvejota/python-edata"
20
20
  EMAIL = "vmayorg@outlook.es"
21
21
  AUTHOR = "VMG"
22
22
  REQUIRES_PYTHON = ">=3.6.0"
23
- VERSION = "1.2.16"
23
+ VERSION = "1.2.17"
24
24
 
25
25
  # What packages are required for this module to be executed?
26
26
  REQUIRED = [
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes