Metadata-Version: 2.1
Name: elia-py
Version: 0.2.1
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
Requires-Dist: numpy (==1.25.2)
Requires-Dist: pandas (==2.0.3)
Requires-Dist: pytest (==7.1.2)
Requires-Dist: python-dateutil (==2.8.2)
Requires-Dist: pytz (==2023.3)
Requires-Dist: requests (==2.31.0)
Requires-Dist: xlrd (==2.0.1)

# 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).


