# PyEssent

A wrapper around the API of [Essent](https://essent.nl/), a Dutch energy provider.

Written for use with Home Assistant.

## How to use

```
from pyessent import PyEssent

essent = PyEssent(username=username, password=password)
for ean in essent.get_EANs():
    essent.read_meter(ean)
```

You have to parse the output XML yourself, sorry.

## Disclaimer
This is not created or supported by Essent in any way.

## License
Apache2
