Python API for accessing the go-eCharger EV-Charger via local http-Endpoint
  • Python 98.5%
  • Makefile 1.2%
  • Shell 0.3%
Find a file
2024-09-03 22:28:35 +02:00
.github/workflows Create pythonapp.yml 2020-04-10 11:02:23 +02:00
goecharger add some missing values 2024-09-03 22:28:35 +02:00
tests Use non-zero values of energy_by_token for sample response used by test cases 2021-05-30 21:44:39 +02:00
.gitignore added VS Code config to .gitignore 2019-12-19 22:46:01 +01:00
LICENSE Initial commit 2019-12-19 22:22:01 +01:00
Makefile fix: new parameter for charger temp. 2021-05-07 18:01:28 +02:00
publish.sh chore: added publish tool 2020-04-10 10:31:23 +02:00
README.md Update README.md 2020-04-10 12:26:37 +02:00
requirements.txt Basic Project setup 2019-12-19 22:45:33 +01:00
setup.py Merge pull request #12 from fabaff/patch-1 2021-11-19 16:37:24 +01:00

goecharger API (WIP)

Python API for accessing the go-eCharger EV-Charger via the local http-Endpoint

Tested with the "go-eCharger HOME+" CEE-Version

Warning: WIP - Breaking changes possible

This is the first version of the API so there are still breaking chnages possible eg. output parameter names or values.

Links

Product Homepage

API-Documentation

Project Homepage

PyPi Package

Home Assistant Integration

goecharger CLI App (TBD / WIP)

Features

  • Query Charger Status
  • Set Charger Configuration

Install

pip install goecharger

Example

from goecharger import GoeCharger

charger = GoeCharger('192.168.1.1') # <- change to your charger IP
 
print (charger.requestStatus())