Metadata-Version: 2.1
Name: oekofen-api
Version: 0.0.2
Summary: A python library to retrieve statistics from your Oekofen Pelletronic
Home-page: https://github.com/ckarrie/oekofen-api
Download-URL: https://github.com/ckarrie/oekofen-api/archive/refs/tags/v0.0.2.tar.gz
Author: Christian Karrié
Author-email: ckarrie@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE

# Oekofen API

## Usage

- change `192.168.178.222` to your Oekofen IP
- change `eMlG` to your JSON Password (see Touchpad of your Oekofen)

```python
import oekofen_api
import asyncio

client = oekofen_api.Oekofen("192.168.178.222", "eMlG")
asyncio.run(client.update_data())
client.get_status()
client.get_weather_temp()
client.get_heating_circuit_temp()
asyncio.run(client.set_heating_circuit_temp(celsius=23))


```
