Automation beim Auto: Unterschied zwischen den Versionen

Aus CodicaTipps
Zur Navigation springen Zur Suche springen
 
(3 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
 
== Renault API ==
 
== Renault API ==
 +
 +
python3 -m venv venv
 +
source venv/bin/activate
 +
pip install renault-api
 +
pip install click
 +
pip install dateparser
 +
pip install tabulate
 +
pip install renault-api
 +
renault-api accounts
 +
renault-api status
 +
renault-api settings
 +
renault-api contracts
 +
renault-api renault-api charge sessions --from 2024-12-12 --to $(date -I) > /tmp/charges$(date -I).txt
 +
source venv/bin/deactivate
 +
 +
  
 
* https://renault-api.readthedocs.io/en/latest/index.html
 
* https://renault-api.readthedocs.io/en/latest/index.html
 
* https://github.com/hacf-fr/renault-api
 
* https://github.com/hacf-fr/renault-api
 +
* https://github.com/db-EV/ZoePHP
 
* https://wiki.loxberry.de/plugins/renault_my_ze/start
 
* https://wiki.loxberry.de/plugins/renault_my_ze/start
 +
  
 
* https://www.meinemessungen.de/
 
* https://www.meinemessungen.de/

Aktuelle Version vom 3. Januar 2026, 21:30 Uhr

Renault API

python3 -m venv venv
source venv/bin/activate
pip install renault-api
pip install click
pip install dateparser
pip install tabulate
pip install renault-api
renault-api accounts
renault-api status
renault-api settings
renault-api contracts
renault-api renault-api charge sessions --from 2024-12-12 --to $(date -I) > /tmp/charges$(date -I).txt
source venv/bin/deactivate