Metadata-Version: 2.1
Name: goecharger
Version: 0.0.15
Summary: A Python API for accessing the go-eCharger EV-Charger
Home-page: https://github.com/cathiele/goecharger
Author: Carsten Thiele
Author-email: software@carsten-thiele.de
License: UNKNOWN
Description: # goecharger API (WIP)
        Python API for accessing the go-eCharger EV-Charger via the local http-Endpoint
        
        Tested with the "[go-eCharger HOME+](https://go-e.co/en/go-echarger-home-2/)" 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](https://go-e.co/en/go-echarger-home-2/)
        
        [API-Documentation](https://go-e.co/app/api.pdf)
        
        [Project Homepage](https://github.com/cathiele/goecharger)
        
        [PyPi Package](https://pypi.org/project/goecharger/)
        
        [Home Assistant Integration](https://github.com/cathiele/homeassistant-goecharger)
        
        [goecharger CLI App](https://github.com/cathiele/goecharger-client) (TBD / WIP)
        
        # Features
        - Query Charger Status
        - Set Charger Configuration
        
        # Install
        
        ```
        pip install goecharger
        ```
        
        # Example
        
        ```python
        from goecharger import GoeCharger
        
        charger = GoeCharger('192.168.1.1') # <- change to your charger IP
         
        print (charger.requestStatus())
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Provides: goecharger
Requires-Python: >=3.6
Description-Content-Type: text/markdown
