Skip to main content

An unofficial class to interact with the Seas-NVE API

Project description

PySeasNVE

https://img.shields.io/pypi/v/pyseasnve.svg Documentation Status

An unofficial class to interact (read-only) with the Seas-NVE API

You’ll need to own an account over at https://seas-nve.dk/

Features

  • Current pricing & climate stats

  • Forecasts for pricing and climate stats

  • The next cheapest/greenest/mixed period (for any given intervals)

TODO:

  • Billing stats?

  • Long-term stats (i.e. weekly/monthly/yearly usage) (50% done)

  • Possibility to set configuration values via the API

Usage

# Install
python3 -m pip install -U pyseasnve

# Login
>>> from pyseasnve import PySeasNVE
>>> seas = PySeasNVE('test@email.com', 'secretPassword')

# Current price + climate stats
>>> seas.current_price()
1.68 # DKK/kWh
>>> seas.current_green_energy()
75.68 # %
>>> seas.current_co2_intensity()
188 # gCO2eq/kWh

# Get the price & climate at some hour
>>> seas.price_at(9)
{'start_time': '2022-03-26T09:00:00', 'kwh_raw_price': 1.48, 'kwh_tariffs': 1.56, 'kwh_total': 3.04}
>>> seas.price_at("2022-03-26T18:00:00")
{'start_time': '2022-03-26T18:00:00', 'kwh_raw_price': 2.44, 'kwh_tariffs': 2.05, 'kwh_total': 4.49}

>>> seas.climate_at(26)
{'start_time': '2022-03-27T02:00:00', 'green_energy_percent': 68.7, 'co2_intensity': 251, 'consumption_breakdown_percent': {'biomass': 23.94, 'coal': 21.6, 'gas': 8.36, 'geothermal': 0.0, 'hydro': 1.7, 'nuclear': 7.22, 'oil': 0.0, 'solar': 2.83, 'wind': 33.0, 'unknown': 1.35}}

# Next two cheapest 4-hour intervals
>>> seas.cheapest_interval(4, 2)
[{'start_time': '2022-03-20T12:00:00', 'interval_hours': 4, 'interval_avg_kwh_price': 1.59, 'interval_avg_kwh_price_estimate': False, 'interval_avg_green_energy_percent': 75.68, 'interval_avg_green_energy_percent_estimate': False}, {'start_time': '2022-03-20T11:00:00', 'interval_hours': 4, 'interval_avg_kwh_price': 1.6, 'interval_avg_kwh_price_estimate': False, 'interval_avg_green_energy_percent': 75.68, 'interval_avg_green_energy_percent_estimate': False}]

# Next greenest 1-hour interval
>>> seas.greenest_interval(1, 1)
[{'start_time': '2022-03-20T12:00:00', 'interval_hours': 1, 'interval_avg_kwh_price': 1.57, 'interval_avg_kwh_price_estimate': False, 'interval_avg_green_energy_percent': 75.68, 'interval_avg_green_energy_percent_estimate': False}]

# Or simply use the "best" method, depending on your motivation in SEAS-NVE
>>> seas.best_interval()
[{'start_time': '2022-03-20T12:00:00', 'interval_hours': 1, 'interval_avg_kwh_price': 1.57, 'interval_avg_kwh_price_estimate': False, 'interval_avg_green_energy_percent': 75.68, 'interval_avg_green_energy_percent_estimate': False}, {'start_time': '2022-03-20T13:00:00', 'interval_hours': 1, 'interval_avg_kwh_price': 1.57, 'interval_avg_kwh_price_estimate': False, 'interval_avg_green_energy_percent': 75.68, 'interval_avg_green_energy_percent_estimate': False}, {'start_time': '2022-03-20T14:00:00', 'interval_hours': 1, 'interval_avg_kwh_price': 1.57, 'interval_avg_kwh_price_estimate': False, 'interval_avg_green_energy_percent': 75.68, 'interval_avg_green_energy_percent_estimate': False}]

You can access the forecasts directly aswell, to write you own wrapper code around it. If you find something is missing, please raise an issue or submit the code :-)

>>> seas.forecast_price()
# output not shown
>>> seas.forecast_climate()
# output not shown

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

History

0.2.0 (2022-03-27)

  • BREAKING: renamed kwh_tax to kwh_tariffs - as that is what it is :-)

  • Fixed an error on forecast.price() when the API doesn’t return all keys

  • Added initial work on consumption stats

0.1.1 (2022-03-26)

  • Updated docs

  • Added two unit tests

0.1.0 (2022-03-15)

  • First release on PyPI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyseasnve-0.2.0.tar.gz (17.8 kB view details)

Uploaded Source

Built Distribution

pyseasnve-0.2.0-py2.py3-none-any.whl (11.8 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file pyseasnve-0.2.0.tar.gz.

File metadata

  • Download URL: pyseasnve-0.2.0.tar.gz
  • Upload date:
  • Size: 17.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.2.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for pyseasnve-0.2.0.tar.gz
Algorithm Hash digest
SHA256 bbdb2e86a35397fc69a208f1d950238db43c1307ecca583b5f7bc85b1d025315
MD5 901a604bd5e8698c7484af21e8f4fbae
BLAKE2b-256 05c82340d823d16b56022d817c6d1168104a396b6ae1858fefe8534227320707

See more details on using hashes here.

File details

Details for the file pyseasnve-0.2.0-py2.py3-none-any.whl.

File metadata

  • Download URL: pyseasnve-0.2.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 11.8 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.2.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for pyseasnve-0.2.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 22da5cadad03da0bb9bea6f344f972867849ddcab6f169ae18228cc9351cd3e2
MD5 55ecfd001e1c88601b9678d8f97bd03b
BLAKE2b-256 21464d285010fe99c4cbb33c146ad62c22775a203e959d172f48369be137b782

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page