Skip to main content

Retrieve gas consumption from GrDF web site (French Gas Company)

Project description

PyGazpar

PyGazpar is a Python library for getting natural gas consumption from GrDF French provider.

Their natural gas meter is called Gazpar. It is wireless and transmit the gas consumption once per day.

All consumption data is available on the client account at GrDF Web Site (https://monespace.grdf.fr).

PyGazpar automatically goes through the Web Site and download the consumption data, and make it available in a Python structure.

Installation

Requirements

PyGazpar does not require Selenium and corresponding geckodriver to work.

With the new GrDF web site, it is possible to load the consumption data far easily than before.

Create your virtual environment

$ cd /path/to/my_project_folder/

$ python -m venv .venv

PyGazpar installation

Activate your virtual environment.

source .venv/bin/activate

Use the package manager pip to install PyGazpar.

pip install pygazpar

You can also download the source code and install it manually.

cd /path/to/pygazpar/
python setup.py install

Usage

Command line:

  1. Standard usage (using Json GrDF API).
$ pygazpar -u 'your login' -p 'your password' -c 'your PCE identifier' --datasource 'json'
  1. Alternate usage (using Excel GrDF document).
$ pygazpar -u 'your login' -p 'your password' -c 'your PCE identifier' -t 'temporary directory where to store Excel file (ex: /tmp)' --datasource 'excel'
  1. Test usage (using local static data files, do not connect to GrDF site).
$ pygazpar -u 'your login' -p 'your password' -c 'your PCE identifier' --datasource 'test'

Library:

  1. Standard usage (using Json GrDF API).
import pygazpar

client = pygazpar.Client(pygazpar.JsonWebDataSource(
    username='your login',
    password='your password')
)

data = client.loadSince(pceIdentifier='your PCE identifier',
                        lastNDays=60,
                        frequencies=[pygazpar.Frequency.DAILY, pygazpar.Frequency.MONTHLY])

See samples/jsonSample.py file for the full example.

  1. Alternate usage (using Excel GrDF document).
import pygazpar

client = pygazpar.Client(pygazpar.ExcelWebDataSource(
    username='your login',
    password='your password')
)

data = client.loadSince(pceIdentifier='your PCE identifier',
                        lastNDays=60,
                        frequencies=[pygazpar.Frequency.DAILY, pygazpar.Frequency.MONTHLY])

See samples/excelSample.py file for the full example.

  1. Test usage (using local static data files, do not connect to GrDF site).
import pygazpar

client = pygazpar.Client(pygazpar.TestDataSource())

data = client.loadSince(pceIdentifier='your PCE identifier',
                        lastNDays=10,
                        frequencies=[pygazpar.Frequency.DAILY, Frequency.MONTHLY])

See samples/testSample.py file for the full example.

Output:

data =>
{
  "daily": [
    {
      "time_period": "13/10/2022",
      "start_index_m3": 15724,
      "end_index_m3": 15725,
      "volume_m3": 2,
      "energy_kwh": 17,
      "converter_factor_kwh/m3": 11.16,
      "temperature_degC": null,
      "type": "Mesur\u00e9",
      "timestamp": "2022-12-13T23:58:35.606763"
    },
    ...
    {
      "time_period": "11/12/2022",
      "start_index_m3": 16081,
      "end_index_m3": 16098,
      "volume_m3": 18,
      "energy_kwh": 201,
      "converter_factor_kwh/m3": 11.27,
      "temperature_degC": -1.47,
      "type": "Mesur\u00e9",
      "timestamp": "2022-12-13T23:58:35.606763"
    }
  ],
  "monthly": [
    {
      "time_period": "Novembre 2022",
      "start_index_m3": 15750,
      "end_index_m3": 15950,
      "volume_m3": 204,
      "energy_kwh": 2227,
      "timestamp": "2022-12-13T23:58:35.606763"
    },
    {
      "time_period": "D\u00e9cembre 2022",
      "start_index_m3": 15950,
      "end_index_m3": 16098,
      "volume_m3": 148,
      "energy_kwh": 1664,
      "timestamp": "2022-12-13T23:58:35.606763"
    }
  ]
}

Limitation

PyGazpar relies on how GrDF Web Site is built.

Any change in the Web site may break this library.

We expect in close Future that GrDF makes available an open API from which we can get safely their data.

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

Project status

PyGazpar has been initiated for integration with Home Assistant.

Corresponding Home Assistant integration custom component is available here.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

1.2.0 - 2022-12-16

Changed

  • #59: [Feature] Support both Excel and Json data source format from GrDF site.

  • #60: [Feature] Permit to load data at multiple frequencies with one method call.

Fixed

  • #47: [Bug] No temperature field available.

  • #58: [Issue] No data update - GrDF web site is half broken - Download button does not work anymore.

1.1.6 - 2022-11-16

Fixed

  • #55: Problème de connexion.

1.1.5 - 2022-07-11

Fixed

  • #49: Authentication failure.

1.1.4 - 2022-01-18

Changed

  • #43: Downloaded Excel file name has changed from Donnees_informatives_PCE_$dateDebut_$dateFin.xlsx to Donnees_informatives_$numeroPCE_$dateDebut_$dateFin.xlsx.

1.1.2 - 2022-01-08

Fixed

  • #39: NameError: name 'Frequency' is not defined (thanks nicolas-r).
  • 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).

1.1.1 - 2021-12-02

Changed

  • Exact same version as 1.1.0 except that 1.1.0 has not been published on Pypi repository.

1.1.0 - 2021-12-02

Changed

  • Remove Selenium usage and use simple Web request for login and data retrieval.

1.0.2 - 2021-11-25

Fixed

  • Fix broken command line pygazpar caused by adding the new lastNDays parameter.
  • 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 for having spotted the issue and bringing the fix).

Changed

  • 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).

1.0.1 - 2021-11-24

Fixed

  • Fix typo warning from Pylance preventing 1.0.0 to be published.

1.0.0 - 2021-11-24

Added

  • New lastNDays parameter to query data only over the last N days period.

Fixed

  • #18: PyGazpar broken since GRDF Monespace has been upgraded to a new version.

0.2.0 - 2021-04-21

Added

  • #12: Be able to retrieve consumption not only on a daily basis, but weekly and monthly:
    • API : Add a new parameter 'meterReadingFrequency' to Client that accepts enumeration: Frequency.DAILY, Frequency.WEEKLY or Frequency.MONTHLY.
    • Command line : Add a new argument '--frequency' that accepts values : DAILY, WEEKLY or MONTHLY.
  • Be able to test using offline data :
    • 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).
    • Command line : Add a new argument '--testMode' (True if specified and False by default).

Changed

  • Some ouput energy property names have changed:
    • 'date' => 'time_period'.
    • 'converter_factor' => 'converter_factor_kwh/m3'.
    • 'local_temperature' => 'temperature_degC'.

0.1.27 - 2021-04-20

Fixed

  • #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).

0.1.26 - 2021-04-18

Fixed

  • #10 : Does not download data file in tmpdir as expected (instead it is downloaded in the default user Download directory).

Added

  • A new parameter to drive whether we want Selenium in headless mode or not (mainly for troubleshooting purpose).

0.1.25 - 2021-04-15

Fixed

  • Remove useless warning log messages (log message level has been decreased to debug).

0.1.24 - 2021-04-14

Added

  • README.md amendment (thanks to pbranly).

0.1.23 - 2021-04-09

Changed

  • Final release with CI/CD workflow improvement.

0.1.22 - 2021-04-09

Changed

  • Improve CI/CD workflow.

0.1.21 - 2021-04-07

Changed

  • Cleanup some codes managing Privacy Conditions popup.

0.1.20 - 2021-04-07

Changed

  • Close an eventual Privacy Conditions popup just before clicking the daily button (instead of Cookie banner).

0.1.19 - 2021-04-06

Added

  • Close an eventual Cookie popup just before clicking the daily button.
  • Add log messages and screenshot capture around click() and send_keys() methods.

0.1.18 - 2021-04-05

Fixed

  • Typo in logger usage.

0.1.17 - 2021-04-05

Fixed

  • Logger name must be different in each instance. Using name is a good practice, we can get the module hierarchy.

0.1.16 - 2021-04-05

Fixed

  • Logger 'pygazpar' initialization must be done inside the main program and not inside the library.

0.1.15 - 2021-04-05

Added

  • Many log message to help debugging if GrDF site changes something : pygazpar.log
  • Take a screenshot of the corresponding page where a selenium command fails : error_screenshot.png.

0.1.14 - 2020-09-23

Fixed

  • GrDF survey popup has to be closed at the home page.
  • GrDF Assistant popup may hide the Download button. We have to close it.
  • GrDF bottom banner that invite to accept cookies may also hide the Download button. We have to accept it.

Added

  • A new parameter 'lastNRows' to get only the last N most recent records.

0.1.13 - 2020-06-30

Fixed

  • GrDF data retrieval from Excel file is not limited to the 1000 first rows any more.

0.1.12 - 2020-06-30

Fixed

  • 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. Second, the condition on clicking on Download button is now based on the corresponding event and not anymore on its identifier.

0.1.11 - 2020-06-29

Fixed

  • 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. 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).

0.1.10 - 2020-06-03

Fixed

  • Extract rows from Excel until line 1000 (instead of 365 as before).

0.1.9 - 2019-08-31

Fixed

  • WebDriver window size must be large enough to display all clickable components.

0.1.8 - 2019-08-31

Changed

  • Use PropertyNameEnum type to store all property names.

0.1.7 - 2019-08-29

Added

  • 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).
  • Add LoginError exception raised when PyGazpar is unable to sign in the GrDF Web site with the given username/password.
  • Refactor all data property names.

0.1.6 - 2019-08-26

Added

  • Add README.md and CHANGELOG.md.
  • Add Client.data() method to get the updated data.

Removed

  • Remove Client.data property to get the updated data. Replaced with Client.__data private property.

MIT License

Copyright (c) 2019 Stéphane Senart

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pygazpar-1.2.0.tar.gz (35.5 kB view hashes)

Uploaded Source

Built Distributions

pygazpar-1.2.0-py311-none-any.whl (36.3 kB view hashes)

Uploaded Python 3.11

pygazpar-1.2.0-py310-none-any.whl (36.3 kB view hashes)

Uploaded Python 3.10

pygazpar-1.2.0-py39-none-any.whl (36.3 kB view hashes)

Uploaded Python 3.9

pygazpar-1.2.0-py38-none-any.whl (36.3 kB view hashes)

Uploaded Python 3.8

pygazpar-1.2.0-py37-none-any.whl (36.3 kB view hashes)

Uploaded Python 3.7

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page