Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/gjohansson-st/pynordpool
- Owner: gjohansson-ST
- License: mit
- Created: 2024-11-05T15:03:20.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-11-05T21:50:21.000Z (3 months ago)
- Last Synced: 2024-11-05T22:14:53.104Z (3 months ago)
- Topics: nordpool
- Language: Python
- Homepage:
- Size: 103 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
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, Currencyasync 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)
```