Metadata-Version: 2.1
Name: tqenergymanager300
Version: 0.0.2
Summary: Client for TQ-Automation Energy Manager 300 JSON API
Home-page: https://github.com/stieler-it/tqenergymanager300py
Author: stieler .IT
Author-email: michael@stieler.it
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/stieler-it/tqenergymanager300py/issues
Description: # TQ-Automation Energy Manager 300
        
        Python library to request data from TQ-Automation Energy Manager EM300 (aka B-control Energy Manager EM-300 aka Kostal EM300LR).
        
        Usage:
        ```python
        import tqenergymanager300
        
        client = TqEnergyManagerJsonClient(
        	"192.168.251.22", "12345678", "Password"
        )
        logged_in = client.login()
        if logged_in:
        	print(client.fetch_data())
        ```
        
        Special thanks to Kilian Knoll for an [example project](https://github.com/kilianknoll/EM300) how to access the API.
        
        This project is not affiliated with TQ-Systems GmbH or any of its affiliates.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
