This is a script based on Linkindle, created by Outadoc (https://github.com/outadoc/linkindle), allowing to get consumption from Enedis' website (https://espace-client-connexion.erdf.fr/auth/UI/Login?realm=particuliers), through API. This generates JSON files ready to be plotted with Highcharts for example.
The script will generate 4 JSON files for :
- Half-hour power (kW)
- Daily consumption (kWh)
- Monthly consumption (kWh)
- Yearly consumption (kWh)
This script requires the use of Python 3 with the following dependencies:
- dateutil
- requests
- json
In "gen_json.sh" script, set up environment variables containing your Enedis email and password. Don't forget to uncomment the following lines:
export LINKY_USERNAME="prenom.nom@mail.com"
export LINKY_PASSWORD="password"
Then, just run "gen_json.sh" script to generate the JSON files. Fell free to add a cron to get ENEDIS data periodically.