Metadata-Version: 2.1
Name: elia-py
Version: 0.1.0
Summary: Python3 client for the webservices of Elia
Home-page: https://github.com/quintinnicolas/elia-py
Author: Nicolas Quintin
Author-email: nicolasquintin92@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# elia-py
Simple Python 3 client for the Elia Open Data API 🤖

For more information about the Elia Open Data Platform, please refer to 
[https://opendata.elia.be/](https://opendata.elia.be/).

### Installation
```shell
pip install elia-py
```

### Usage
```python
import datetime as dt
from elia import elia

connection = elia.EliaPandasClient()
start = dt.datetime(2022, 1, 1)
end = dt.datetime(2022, 1, 15)

df = connection.get_imbalance_prices_per_quarter_hour(start=start, end=end)
```
### Notes
This work has been inspired by a similar project `entsoe-py` available on 
[GitHub](https://github.com/EnergieID/entsoe-py).


