Skip to main content

Statnett API Client

Project description

Statnett API Client

Client presents methods for reading real-time Nordic power balance data provided by the Norwegian Transmission System Operator (statnett.no).

The full list of topics accessible via Statnett REST API can be seen here.

Client supports reading of the following data:

Installation

To install the Client, simply use pip:

$ pip install statnett_api_client

Client initialization

Firstly, you need to initialize the client. By default, it will return data in json format. You can specify fmt parameter to receive data as pandas dataframe.

from statnett_api_client import Client

# this client will return json array
client = Client()
# this client will return pandas dataframe
client = Client(fmt='pandas')
# this client will return pandas dataframe with datetime index
client = Client(fmt='pandas', date2index=True)

By default, the time is in UTC. To add a column with Central European Time (CET), you need to specify time_cet parameter.

client = Client(fmt='pandas', time_cet=True)

Reading data

After you have set the client, you can read data from supported topics.

# read power flow 
flow = client.get('flow')
# read power balance
balance = client.get('balance')

License

The Client is released under MIT License.

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

statnett-api-client-0.1.0.tar.gz (4.2 kB view hashes)

Uploaded Source

Built Distribution

statnett_api_client-0.1.0-py3-none-any.whl (5.8 kB view hashes)

Uploaded Python 3

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