Metadata-Version: 2.1
Name: elia-py
Version: 0.0.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
Requires-Dist: requests
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: pytz
Requires-Dist: pytest
Requires-Dist: xlrd

# elia-py
Python 3 client for the Elia web services, the Belgian Transmission System Operator.
For more information about the web services, please refer to 
[this page](https://www.elia.be/en/customers/customer-tools-and-extranet/the-b2b-xml-service).

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

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

connection = elia.EliaPandasClient()
start = dt.datetime(2021,1,1)
end = dt.datetime(2021,1,5)

df = connection.get_forecast_solar(start, end)
```



