Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gjohansson-st/pynordpool

Python api for Nordpool
https://github.com/gjohansson-st/pynordpool

nordpool

Last synced: 2 months ago
JSON representation

Python api for Nordpool

Awesome Lists containing this project

README

        

# pynordpool
python module for communicating with [Nord Pool](https://data.nordpoolgroup.com/auction/day-ahead/prices)

## Code example

### Retrieve delivery period prices

Hourly rates from provided date

```python
from pynordpool import NordPoolClient, Currency

async with aiohttp.ClientSession(loop=loop) as session:
client = NordPoolClient(session)
output = await client.async_get_delivery_period(
datetime.datetime.now(), Currency.EUR, ["SE3"]
)
print(output)
```