pygazpar 1.2.8__tar.gz → 1.3.0a6__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. pygazpar-1.3.0a6/PKG-INFO +439 -0
  2. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/README.md +0 -3
  3. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/pygazpar/datasource.py +535 -528
  4. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/pygazpar/excelparser.py +136 -138
  5. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/pygazpar/jsonparser.py +1 -1
  6. pygazpar-1.3.0a6/pygazpar/version.py +1 -0
  7. pygazpar-1.3.0a6/pygazpar.egg-info/PKG-INFO +439 -0
  8. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/pygazpar.egg-info/SOURCES.txt +0 -1
  9. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/pygazpar.egg-info/entry_points.txt +1 -0
  10. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/setup.cfg +4 -4
  11. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/tests/test_client.py +145 -159
  12. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/tests/test_datasource.py +166 -166
  13. pygazpar-1.2.8/CHANGELOG.md +0 -245
  14. pygazpar-1.2.8/PKG-INFO +0 -481
  15. pygazpar-1.2.8/pygazpar/version.py +0 -1
  16. pygazpar-1.2.8/pygazpar.egg-info/PKG-INFO +0 -481
  17. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/LICENSE.md +0 -0
  18. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/MANIFEST.in +0 -0
  19. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/pygazpar/__init__.py +0 -0
  20. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/pygazpar/__main__.py +0 -0
  21. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/pygazpar/client.py +0 -0
  22. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/pygazpar/enum.py +0 -0
  23. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/pygazpar/resources/daily_data_sample.json +0 -0
  24. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/pygazpar/resources/hourly_data_sample.json +0 -0
  25. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/pygazpar/resources/monthly_data_sample.json +0 -0
  26. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/pygazpar/resources/weekly_data_sample.json +0 -0
  27. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/pygazpar/resources/yearly_data_sample.json +0 -0
  28. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/pygazpar.egg-info/dependency_links.txt +0 -0
  29. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/pygazpar.egg-info/not-zip-safe +0 -0
  30. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/pygazpar.egg-info/requires.txt +0 -0
  31. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/pygazpar.egg-info/top_level.txt +0 -0
  32. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/samples/__init__.py +0 -0
  33. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/samples/excelSample.py +0 -0
  34. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/samples/jsonSample.py +0 -0
  35. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/samples/testSample.py +0 -0
  36. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/setup.py +0 -0
  37. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/tests/__init__.py +0 -0
  38. {pygazpar-1.2.8 → pygazpar-1.3.0a6}/tests/test_datafileparser.py +0 -0
@@ -0,0 +1,439 @@
1
+ Metadata-Version: 2.1
2
+ Name: pygazpar
3
+ Version: 1.3.0a6
4
+ Summary: Retrieve gas consumption from GrDF web site (French Gas Company)
5
+ Home-page: https://github.com/ssenart/pygazpar
6
+ Author: Stephane Senart
7
+ Author-email: stephane.senart@gmail.com
8
+ License: MIT
9
+ Download-URL: https://github.com/ssenart/pygazpar/releases
10
+ Project-URL: Home, https://github.com/ssenart/pygazpar
11
+ Project-URL: Source, https://github.com/ssenart/pygazpar
12
+ Project-URL: Issues, https://github.com/ssenart/PyGazpar/issues
13
+ Project-URL: Changelog, https://github.com/ssenart/PyGazpar/blob/master/CHANGELOG.md
14
+ Project-URL: Download, https://pypi.org/project/pygazpar
15
+ Description: # PyGazpar
16
+ PyGazpar is a Python library for getting natural gas consumption from GrDF French provider.
17
+
18
+ Their natural gas meter is called Gazpar. It is wireless and transmit the gas consumption once per day.
19
+
20
+ All consumption data is available on the client account at GrDF Web Site (https://monespace.grdf.fr).
21
+
22
+ PyGazpar automatically goes through the Web Site and download the consumption data, and make it available in a Python structure.
23
+
24
+ ## Installation
25
+
26
+ ### Requirements
27
+ PyGazpar does not require Selenium and corresponding geckodriver to work.
28
+
29
+ With the new GrDF web site, it is possible to load the consumption data far easily than before.
30
+
31
+ ### Create your virtual environment
32
+ ```bash
33
+ $ cd /path/to/my_project_folder/
34
+
35
+ $ python -m venv .venv
36
+ ```
37
+
38
+ ### PyGazpar installation
39
+ Activate your virtual environment.
40
+ ```bash
41
+ source .venv/bin/activate
42
+ ```
43
+
44
+ Use the package manager [pip](https://pip.pypa.io/en/stable/) to install PyGazpar.
45
+ ```bash
46
+ pip install pygazpar
47
+ ```
48
+
49
+ You can also download the source code and install it manually.
50
+ ```bash
51
+ cd /path/to/pygazpar/
52
+ python setup.py install
53
+ ```
54
+
55
+ ## Usage
56
+
57
+ #### Command line:
58
+
59
+ 1. Standard usage (using Json GrDF API).
60
+
61
+ ```bash
62
+ $ pygazpar -u 'your login' -p 'your password' -c 'your PCE identifier' --datasource 'json'
63
+ ```
64
+
65
+ 2. Alternate usage (using Excel GrDF document).
66
+
67
+ ```bash
68
+ $ pygazpar -u 'your login' -p 'your password' -c 'your PCE identifier' -t 'temporary directory where to store Excel file (ex: /tmp)' --datasource 'excel'
69
+ ```
70
+
71
+ 3. Test usage (using local static data files, do not connect to GrDF site).
72
+
73
+ ```bash
74
+ $ pygazpar -u 'your login' -p 'your password' -c 'your PCE identifier' --datasource 'test'
75
+ ```
76
+
77
+ #### Library:
78
+
79
+ 1. Standard usage (using Json GrDF API).
80
+
81
+ ```python
82
+ import pygazpar
83
+
84
+ client = pygazpar.Client(pygazpar.JsonWebDataSource(
85
+ username='your login',
86
+ password='your password')
87
+ )
88
+
89
+ data = client.loadSince(pceIdentifier='your PCE identifier',
90
+ lastNDays=60,
91
+ frequencies=[pygazpar.Frequency.DAILY, pygazpar.Frequency.MONTHLY])
92
+ ```
93
+ See [samples/jsonSample.py](samples/jsonSample.py) file for the full example.
94
+
95
+ 2. Alternate usage (using Excel GrDF document).
96
+
97
+ ```python
98
+ import pygazpar
99
+
100
+ client = pygazpar.Client(pygazpar.ExcelWebDataSource(
101
+ username='your login',
102
+ password='your password')
103
+ )
104
+
105
+ data = client.loadSince(pceIdentifier='your PCE identifier',
106
+ lastNDays=60,
107
+ frequencies=[pygazpar.Frequency.DAILY, pygazpar.Frequency.MONTHLY])
108
+ ```
109
+ See [samples/excelSample.py](samples/jsonSample.py) file for the full example.
110
+
111
+ 3. Test usage (using local static data files, do not connect to GrDF site).
112
+
113
+ ```python
114
+ import pygazpar
115
+
116
+ client = pygazpar.Client(pygazpar.TestDataSource())
117
+
118
+ data = client.loadSince(pceIdentifier='your PCE identifier',
119
+ lastNDays=10,
120
+ frequencies=[pygazpar.Frequency.DAILY, Frequency.MONTHLY])
121
+ ```
122
+ See [samples/testSample.py](samples/jsonSample.py) file for the full example.
123
+
124
+ #### Output:
125
+
126
+ ```json
127
+ data =>
128
+ {
129
+ "daily": [
130
+ {
131
+ "time_period": "13/10/2022",
132
+ "start_index_m3": 15724,
133
+ "end_index_m3": 15725,
134
+ "volume_m3": 2,
135
+ "energy_kwh": 17,
136
+ "converter_factor_kwh/m3": 11.16,
137
+ "temperature_degC": null,
138
+ "type": "Mesur\u00e9",
139
+ "timestamp": "2022-12-13T23:58:35.606763"
140
+ },
141
+ ...
142
+ {
143
+ "time_period": "11/12/2022",
144
+ "start_index_m3": 16081,
145
+ "end_index_m3": 16098,
146
+ "volume_m3": 18,
147
+ "energy_kwh": 201,
148
+ "converter_factor_kwh/m3": 11.27,
149
+ "temperature_degC": -1.47,
150
+ "type": "Mesur\u00e9",
151
+ "timestamp": "2022-12-13T23:58:35.606763"
152
+ }
153
+ ],
154
+ "monthly": [
155
+ {
156
+ "time_period": "Novembre 2022",
157
+ "start_index_m3": 15750,
158
+ "end_index_m3": 15950,
159
+ "volume_m3": 204,
160
+ "energy_kwh": 2227,
161
+ "timestamp": "2022-12-13T23:58:35.606763"
162
+ },
163
+ {
164
+ "time_period": "D\u00e9cembre 2022",
165
+ "start_index_m3": 15950,
166
+ "end_index_m3": 16098,
167
+ "volume_m3": 148,
168
+ "energy_kwh": 1664,
169
+ "timestamp": "2022-12-13T23:58:35.606763"
170
+ }
171
+ ]
172
+ }
173
+ ```
174
+
175
+ ## Limitation
176
+ PyGazpar relies on how GrDF Web Site is built.
177
+
178
+ Any change in the Web site may break this library.
179
+
180
+ We expect in close Future that GrDF makes available an open API from which we can get safely their data.
181
+
182
+ ## Contributing
183
+ Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
184
+
185
+ Please make sure to update tests as appropriate.
186
+
187
+ ## License
188
+ [MIT](https://choosealicense.com/licenses/mit/)
189
+
190
+ ## Project status
191
+ PyGazpar has been initiated for integration with [Home Assistant](https://www.home-assistant.io/).
192
+
193
+ Corresponding Home Assistant integration custom component is available [here](https://github.com/ssenart/home-assistant-gazpar).
194
+ # Changelog
195
+ All notable changes to this project will be documented in this file.
196
+
197
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
198
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
199
+
200
+
201
+ ## [1.2.1](https://github.com/ssenart/PyGazpar/compare/1.2.0...1.2.1) - 2024-05-04
202
+
203
+ ### Fixed
204
+ - [#64](https://github.com/ssenart/PyGazpar/issues/64): [Issue] Captcha failed issue.
205
+
206
+ - [#63](https://github.com/ssenart/PyGazpar/issues/63): [Bug] If the latest received consumption is Sunday, then the last weekly period is duplicated.
207
+
208
+ ## [1.2.0](https://github.com/ssenart/PyGazpar/compare/1.1.6...1.2.0) - 2022-12-16
209
+
210
+ ### Changed
211
+ - [#59](https://github.com/ssenart/PyGazpar/issues/59): [Feature] Support both Excel and Json data source format from GrDF site.
212
+
213
+ - [#60](https://github.com/ssenart/PyGazpar/issues/60): [Feature] Permit to load data at multiple frequencies with one method call.
214
+
215
+ ### Fixed
216
+ - [#47](https://github.com/ssenart/PyGazpar/issues/47): [Bug] No temperature field available.
217
+
218
+ - [#58](https://github.com/ssenart/PyGazpar/issues/58): [Issue] No data update - GrDF web site is half broken - Download button does not work anymore.
219
+
220
+ ## [1.1.6](https://github.com/ssenart/PyGazpar/compare/1.1.5...1.1.6) - 2022-11-16
221
+ ### Fixed
222
+ - [#55](https://github.com/ssenart/PyGazpar/issues/55): Problème de connexion.
223
+
224
+ ## [1.1.5](https://github.com/ssenart/PyGazpar/compare/1.1.4...1.1.5) - 2022-07-11
225
+ ### Fixed
226
+ - [#49](https://github.com/ssenart/PyGazpar/issues/49): Authentication failure.
227
+
228
+ ## [1.1.4](https://github.com/ssenart/PyGazpar/compare/1.1.2...1.1.4) - 2022-01-18
229
+ ### Changed
230
+ - [#43](https://github.com/ssenart/PyGazpar/issues/43): Downloaded Excel file name has changed from Donnees_informatives_PCE_$dateDebut_$dateFin.xlsx to Donnees_informatives_$numeroPCE_$dateDebut_$dateFin.xlsx.
231
+
232
+ ## [1.1.2](https://github.com/ssenart/PyGazpar/compare/1.1.1...1.1.2) - 2022-01-08
233
+ ### Fixed
234
+ - [#39](https://github.com/ssenart/PyGazpar/issues/39): NameError: name 'Frequency' is not defined (thanks [nicolas-r](https://github.com/nicolas-r)).
235
+ - Numéro PCE pas forcément un nombre: Le numéro PCE de mon compteur commence par un 0 et lorsque j'essaie de récupérer mes relevés avec PyGazpar, une erreur de l'API est renvoyée. Le numéro PCE ne doit donc pas être converti en int lorsque il est passé en paramètre mais doit être une string (thanks [maelgangloff](https://github.com/maelgangloff)).
236
+
237
+ ## [1.1.1](https://github.com/ssenart/PyGazpar/compare/1.1.0...1.1.1) - 2021-12-02
238
+ ### Changed
239
+ - Exact same version as 1.1.0 except that 1.1.0 has not been published on Pypi repository.
240
+
241
+ ## [1.1.0](https://github.com/ssenart/PyGazpar/compare/1.0.2...1.1.0) - 2021-12-02
242
+ ### Changed
243
+ - Remove Selenium usage and use simple Web request for login and data retrieval.
244
+
245
+ ## [1.0.2](https://github.com/ssenart/PyGazpar/compare/1.0.1...1.0.2) - 2021-11-25
246
+ ### Fixed
247
+ - Fix broken command line pygazpar caused by adding the new lastNDays parameter.
248
+ - Fix the error : ValueError: could not convert string to float: 'Index de début de période (m3)'. It occurs because the records in the Excel file now starts at line 10 instead of line 8 before (thanks to [DEFAYArnaud](https://github.com/DEFAYArnaud) for having spotted the issue and bringing the fix).
249
+
250
+ ### Changed
251
+ - In the Excel file, if a cell is empty, then no corresponding key will be inserted in the result dictionary (before we inserted a key with an empty string).
252
+
253
+ ## [1.0.1](https://github.com/ssenart/PyGazpar/compare/1.0.0...1.0.1) - 2021-11-24
254
+ ### Fixed
255
+ - Fix typo warning from Pylance preventing 1.0.0 to be published.
256
+
257
+ ## [1.0.0](https://github.com/ssenart/PyGazpar/compare/0.2.0...1.0.0) - 2021-11-24
258
+ ### Added
259
+ - New lastNDays parameter to query data only over the last N days period.
260
+
261
+ ### Fixed
262
+ - [#18](https://github.com/ssenart/PyGazpar/issues/18): PyGazpar broken since GRDF Monespace has been upgraded to a new version.
263
+
264
+ ## [0.2.0](https://github.com/ssenart/PyGazpar/compare/0.1.27...0.2.0) - 2021-04-21
265
+ ### Added
266
+ - [#12](https://github.com/ssenart/PyGazpar/issues/10): Be able to retrieve consumption not only on a daily basis, but weekly and monthly:
267
+ - API : Add a new parameter 'meterReadingFrequency' to Client that accepts enumeration: Frequency.DAILY, Frequency.WEEKLY or Frequency.MONTHLY.
268
+ - Command line : Add a new argument '--frequency' that accepts values : DAILY, WEEKLY or MONTHLY.
269
+ - Be able to test using offline data :
270
+ - API : Add a new parameter 'testMode' to Clients used to specify whether we want to get some live data (testMode=False) and static testing data (testMode=True).
271
+ - Command line : Add a new argument '--testMode' (True if specified and False by default).
272
+
273
+ ### Changed
274
+ - Some ouput energy property names have changed:
275
+ - 'date' => 'time_period'.
276
+ - 'converter_factor' => 'converter_factor_kwh/m3'.
277
+ - 'local_temperature' => 'temperature_degC'.
278
+
279
+ ## [0.1.27](https://github.com/ssenart/PyGazpar/compare/0.1.26...0.1.27) - 2021-04-20
280
+ ### Fixed
281
+ - [#10](https://github.com/ssenart/PyGazpar/issues/10) : Does not download data file in tmpdir as expected (instead it is downloaded in the default user Download directory). The previous attempt in version 0.1.26 is a failure. The origin of the bug is that we send a relative tmp directory path to Webdriver. Additionally, this path has to be normalized to the runtime OS (using slash or backslash).
282
+
283
+ ## [0.1.26](https://github.com/ssenart/PyGazpar/compare/0.1.25...0.1.26) - 2021-04-18
284
+ ### Fixed
285
+ - [#10](https://github.com/ssenart/PyGazpar/issues/10) : Does not download data file in tmpdir as expected (instead it is downloaded in the default user Download directory).
286
+
287
+ ### Added
288
+ - A new parameter to drive whether we want Selenium in headless mode or not (mainly for troubleshooting purpose).
289
+
290
+ ## [0.1.25] - 2021-04-15
291
+ ### Fixed
292
+ - Remove useless warning log messages (log message level has been decreased to debug).
293
+
294
+ ## [0.1.24] - 2021-04-14
295
+ ### Added
296
+ - README.md amendment (thanks to pbranly).
297
+
298
+ ## [0.1.23] - 2021-04-09
299
+ ### Changed
300
+ - Final release with CI/CD workflow improvement.
301
+
302
+ ## [0.1.22] - 2021-04-09
303
+ ### Changed
304
+ - Improve CI/CD workflow.
305
+
306
+ ## [0.1.21] - 2021-04-07
307
+ ### Changed
308
+ - Cleanup some codes managing Privacy Conditions popup.
309
+
310
+ ## [0.1.20] - 2021-04-07
311
+ ### Changed
312
+ - Close an eventual Privacy Conditions popup just before clicking the daily button (instead of Cookie banner).
313
+
314
+ ## [0.1.19] - 2021-04-06
315
+ ### Added
316
+ - Close an eventual Cookie popup just before clicking the daily button.
317
+ - Add log messages and screenshot capture around click() and send_keys() methods.
318
+
319
+ ## [0.1.18] - 2021-04-05
320
+ ### Fixed
321
+ - Typo in logger usage.
322
+
323
+ ## [0.1.17] - 2021-04-05
324
+ ### Fixed
325
+ - Logger name must be different in each instance. Using __name__ is a good practice, we can get the module hierarchy.
326
+
327
+ ## [0.1.16] - 2021-04-05
328
+ ### Fixed
329
+ - Logger 'pygazpar' initialization must be done inside the main program and not inside the library.
330
+
331
+ ## [0.1.15] - 2021-04-05
332
+ ### Added
333
+ - Many log message to help debugging if GrDF site changes something : pygazpar.log
334
+ - Take a screenshot of the corresponding page where a selenium command fails : error_screenshot.png.
335
+
336
+ ## [0.1.14] - 2020-09-23
337
+ ### Fixed
338
+ - GrDF survey popup has to be closed at the home page.
339
+ - GrDF Assistant popup may hide the Download button. We have to close it.
340
+ - GrDF bottom banner that invite to accept cookies may also hide the Download button. We have to accept it.
341
+
342
+ ### Added
343
+ - A new parameter 'lastNRows' to get only the last N most recent records.
344
+
345
+ ## [0.1.13] - 2020-06-30
346
+ ### Fixed
347
+ - GrDF data retrieval from Excel file is not limited to the 1000 first rows any more.
348
+
349
+ ## [0.1.12] - 2020-06-30
350
+ ### Fixed
351
+ - The previous 0.1.11 is not sufficient. Hence, 2 new changes : First, make configurable the waiting time so the user can adapt to its context usage.
352
+ Second, the condition on clicking on Download button is now based on the corresponding event and not anymore on its identifier.
353
+
354
+ ## [0.1.11] - 2020-06-29
355
+ ### Fixed
356
+ - When GrDF Web site is slower than usual, the client may not wait enough time for pages to load and miss to reach the data file.
357
+ It occurs with the page containing 'Jour' button which is very long to load (I increase the wait to load time from 5s to 30s).
358
+
359
+ ## [0.1.10] - 2020-06-03
360
+ ### Fixed
361
+ - Extract rows from Excel until line 1000 (instead of 365 as before).
362
+
363
+ ## [0.1.9] - 2019-08-31
364
+ ### Fixed
365
+ - WebDriver window size must be large enough to display all clickable components.
366
+
367
+ ## [0.1.8] - 2019-08-31
368
+ ### Changed
369
+ - Use PropertyNameEnum type to store all property names.
370
+
371
+ ## [0.1.7] - 2019-08-29
372
+ ### Added
373
+ - Add wait_time option to control how much time the library has to wait for Web page element to load (see https://selenium-python.readthedocs.io/waits.html for details).
374
+ - Add LoginError exception raised when PyGazpar is unable to sign in the GrDF Web site with the given username/password.
375
+ - Refactor all data property names.
376
+
377
+ ## [0.1.6] - 2019-08-26
378
+ ### Added
379
+ - Add README.md and CHANGELOG.md.
380
+ - Add Client.data() method to get the updated data.
381
+
382
+ ### Removed
383
+ - Remove Client.data property to get the updated data. Replaced with Client.__data private property.
384
+
385
+ [0.1.25]: https://github.com/ssenart/PyGazpar/compare/0.1.24...0.1.25
386
+ [0.1.24]: https://github.com/ssenart/PyGazpar/compare/0.1.23...0.1.24
387
+ [0.1.23]: https://github.com/ssenart/PyGazpar/compare/0.1.22...0.1.23
388
+ [0.1.22]: https://github.com/ssenart/PyGazpar/compare/0.1.21...0.1.22
389
+ [0.1.21]: https://github.com/ssenart/PyGazpar/compare/0.1.20...0.1.21
390
+ [0.1.20]: https://github.com/ssenart/PyGazpar/compare/0.1.19...0.1.20
391
+ [0.1.19]: https://github.com/ssenart/PyGazpar/compare/0.1.17...0.1.19
392
+ [0.1.18]: https://github.com/ssenart/PyGazpar/compare/0.1.17...0.1.18
393
+ [0.1.17]: https://github.com/ssenart/PyGazpar/compare/0.1.16...0.1.17
394
+ [0.1.16]: https://github.com/ssenart/PyGazpar/compare/0.1.15...0.1.16
395
+ [0.1.15]: https://github.com/ssenart/PyGazpar/compare/0.1.14...0.1.15
396
+ [0.1.14]: https://github.com/ssenart/PyGazpar/compare/0.1.13...0.1.14
397
+ [0.1.13]: https://github.com/ssenart/PyGazpar/compare/0.1.12...0.1.13
398
+ [0.1.12]: https://github.com/ssenart/PyGazpar/compare/0.1.11...0.1.12
399
+ [0.1.11]: https://github.com/ssenart/PyGazpar/compare/0.1.10...0.1.11
400
+ [0.1.10]: https://github.com/ssenart/PyGazpar/compare/0.1.9...0.1.10
401
+ [0.1.9]: https://github.com/ssenart/PyGazpar/compare/0.1.7...0.1.9
402
+ [0.1.8]: https://github.com/ssenart/PyGazpar/compare/0.1.7...0.1.8
403
+ [0.1.7]: https://github.com/ssenart/PyGazpar/compare/0.1.6...0.1.7
404
+ [0.1.6]: https://github.com/ssenart/PyGazpar/compare/0.1.5...0.1.6
405
+
406
+ MIT License
407
+
408
+ Copyright (c) 2019 Stéphane Senart
409
+
410
+ Permission is hereby granted, free of charge, to any person obtaining a copy
411
+ of this software and associated documentation files (the "Software"), to deal
412
+ in the Software without restriction, including without limitation the rights
413
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
414
+ copies of the Software, and to permit persons to whom the Software is
415
+ furnished to do so, subject to the following conditions:
416
+
417
+ The above copyright notice and this permission notice shall be included in all
418
+ copies or substantial portions of the Software.
419
+
420
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
421
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
422
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
423
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
424
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
425
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
426
+ SOFTWARE.
427
+
428
+ Keywords: Energy,Natural Gas,Meter,GrDF,Gazpar
429
+ Platform: any
430
+ Classifier: Development Status :: 5 - Production/Stable
431
+ Classifier: Topic :: Software Development :: Libraries
432
+ Classifier: Operating System :: OS Independent
433
+ Classifier: Programming Language :: Python :: 3.7
434
+ Classifier: Programming Language :: Python :: 3.8
435
+ Classifier: Programming Language :: Python :: 3.9
436
+ Classifier: Programming Language :: Python :: 3.10
437
+ Classifier: Programming Language :: Python :: 3.11
438
+ Requires-Python: >=3.7
439
+ Description-Content-Type: text/markdown
@@ -1,7 +1,4 @@
1
1
  # PyGazpar
2
-
3
- ## $\text{\color{green}{!!! This library is working again. CAPTCHA has been removed !!!}}$
4
-
5
2
  PyGazpar is a Python library for getting natural gas consumption from GrDF French provider.
6
3
 
7
4
  Their natural gas meter is called Gazpar. It is wireless and transmit the gas consumption once per day.