Automation beim Auto: Unterschied zwischen den Versionen

Aus CodicaTipps
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „== Renault API === * https://wiki.loxberry.de/plugins/renault_my_ze/start“)
Markierungen: Mobile Bearbeitung Mobile Web-Bearbeitung
 
 
(6 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://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.goingelectric.de/forum/viewtopic.php?t=65587
 +
 +
-----
 +
<references/>
 +
[[Category:Automation]]

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