pygazpar 1.2.7__tar.gz → 1.2.8__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (36) hide show
  1. {pygazpar-1.2.7 → pygazpar-1.2.8}/CHANGELOG.md +5 -0
  2. {pygazpar-1.2.7/pygazpar.egg-info → pygazpar-1.2.8}/PKG-INFO +10 -5
  3. {pygazpar-1.2.7 → pygazpar-1.2.8}/pygazpar/datasource.py +528 -522
  4. {pygazpar-1.2.7 → pygazpar-1.2.8}/pygazpar/excelparser.py +138 -136
  5. pygazpar-1.2.8/pygazpar/version.py +1 -0
  6. {pygazpar-1.2.7 → pygazpar-1.2.8/pygazpar.egg-info}/PKG-INFO +10 -5
  7. {pygazpar-1.2.7 → pygazpar-1.2.8}/setup.cfg +3 -4
  8. pygazpar-1.2.7/pygazpar/version.py +0 -1
  9. {pygazpar-1.2.7 → pygazpar-1.2.8}/LICENSE.md +0 -0
  10. {pygazpar-1.2.7 → pygazpar-1.2.8}/MANIFEST.in +0 -0
  11. {pygazpar-1.2.7 → pygazpar-1.2.8}/README.md +0 -0
  12. {pygazpar-1.2.7 → pygazpar-1.2.8}/pygazpar/__init__.py +0 -0
  13. {pygazpar-1.2.7 → pygazpar-1.2.8}/pygazpar/__main__.py +0 -0
  14. {pygazpar-1.2.7 → pygazpar-1.2.8}/pygazpar/client.py +0 -0
  15. {pygazpar-1.2.7 → pygazpar-1.2.8}/pygazpar/enum.py +0 -0
  16. {pygazpar-1.2.7 → pygazpar-1.2.8}/pygazpar/jsonparser.py +0 -0
  17. {pygazpar-1.2.7 → pygazpar-1.2.8}/pygazpar/resources/daily_data_sample.json +0 -0
  18. {pygazpar-1.2.7 → pygazpar-1.2.8}/pygazpar/resources/hourly_data_sample.json +0 -0
  19. {pygazpar-1.2.7 → pygazpar-1.2.8}/pygazpar/resources/monthly_data_sample.json +0 -0
  20. {pygazpar-1.2.7 → pygazpar-1.2.8}/pygazpar/resources/weekly_data_sample.json +0 -0
  21. {pygazpar-1.2.7 → pygazpar-1.2.8}/pygazpar/resources/yearly_data_sample.json +0 -0
  22. {pygazpar-1.2.7 → pygazpar-1.2.8}/pygazpar.egg-info/SOURCES.txt +0 -0
  23. {pygazpar-1.2.7 → pygazpar-1.2.8}/pygazpar.egg-info/dependency_links.txt +0 -0
  24. {pygazpar-1.2.7 → pygazpar-1.2.8}/pygazpar.egg-info/entry_points.txt +0 -0
  25. {pygazpar-1.2.7 → pygazpar-1.2.8}/pygazpar.egg-info/not-zip-safe +0 -0
  26. {pygazpar-1.2.7 → pygazpar-1.2.8}/pygazpar.egg-info/requires.txt +0 -0
  27. {pygazpar-1.2.7 → pygazpar-1.2.8}/pygazpar.egg-info/top_level.txt +0 -0
  28. {pygazpar-1.2.7 → pygazpar-1.2.8}/samples/__init__.py +0 -0
  29. {pygazpar-1.2.7 → pygazpar-1.2.8}/samples/excelSample.py +0 -0
  30. {pygazpar-1.2.7 → pygazpar-1.2.8}/samples/jsonSample.py +0 -0
  31. {pygazpar-1.2.7 → pygazpar-1.2.8}/samples/testSample.py +0 -0
  32. {pygazpar-1.2.7 → pygazpar-1.2.8}/setup.py +0 -0
  33. {pygazpar-1.2.7 → pygazpar-1.2.8}/tests/__init__.py +0 -0
  34. {pygazpar-1.2.7 → pygazpar-1.2.8}/tests/test_client.py +0 -0
  35. {pygazpar-1.2.7 → pygazpar-1.2.8}/tests/test_datafileparser.py +0 -0
  36. {pygazpar-1.2.7 → pygazpar-1.2.8}/tests/test_datasource.py +0 -0
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [1.2.8](https://github.com/ssenart/PyGazpar/compare/1.2.8...1.2.7) - 2025-01-11
8
+
9
+ ### Added
10
+ - [#81](https://github.com/ssenart/PyGazpar/issues/81): Add meter/temperature debug log messages to help investigation in case of errors.
11
+
7
12
  ## [1.2.7](https://github.com/ssenart/PyGazpar/compare/1.2.7...1.2.6) - 2025-01-06
8
13
 
9
14
  ### Fixed
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: pygazpar
3
- Version: 1.2.7
3
+ Version: 1.2.8
4
4
  Summary: Retrieve gas consumption from GrDF web site (French Gas Company)
5
5
  Home-page: https://github.com/ssenart/pygazpar
6
6
  Download-URL: https://github.com/ssenart/pygazpar/releases
@@ -17,18 +17,18 @@ Platform: any
17
17
  Classifier: Development Status :: 5 - Production/Stable
18
18
  Classifier: Topic :: Software Development :: Libraries
19
19
  Classifier: Operating System :: OS Independent
20
- Classifier: Programming Language :: Python :: 3.7
21
- Classifier: Programming Language :: Python :: 3.8
22
20
  Classifier: Programming Language :: Python :: 3.9
23
21
  Classifier: Programming Language :: Python :: 3.10
24
22
  Classifier: Programming Language :: Python :: 3.11
25
23
  Classifier: Programming Language :: Python :: 3.12
26
- Requires-Python: >=3.7
24
+ Classifier: Programming Language :: Python :: 3.13
25
+ Requires-Python: >=3.9
27
26
  Description-Content-Type: text/markdown
28
27
  License-File: LICENSE.md
29
28
  Requires-Dist: openpyxl>=2.6.3
30
29
  Requires-Dist: requests>=2.26.0
31
30
  Requires-Dist: pandas
31
+ Dynamic: download-url
32
32
 
33
33
  # PyGazpar
34
34
 
@@ -218,6 +218,11 @@ All notable changes to this project will be documented in this file.
218
218
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
219
219
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
220
220
 
221
+ ## [1.2.8](https://github.com/ssenart/PyGazpar/compare/1.2.8...1.2.7) - 2025-01-11
222
+
223
+ ### Added
224
+ - [#81](https://github.com/ssenart/PyGazpar/issues/81): Add meter/temperature debug log messages to help investigation in case of errors.
225
+
221
226
  ## [1.2.7](https://github.com/ssenart/PyGazpar/compare/1.2.7...1.2.6) - 2025-01-06
222
227
 
223
228
  ### Fixed