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 topics:

Installation

To install the Client, simply use pip:

$ pip install statnett_api_client

Basic Usage

from statnett_api_client import Client
# initialize parser
client = Client(fmt='pandas')
# read power flow topic and return pandas dataframe 
flow = client.get('flow')

Client

You can specify the format of returned object when initializing the client. By default, it will return data as json array.

client = Client()

To get the data as pandas object, you need to specify fmt parameter in constructor. Specify date2index if you want to add dates to dataframe index.

client = Client(fmt='pandas')
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.

# Nordic power flow 
flow = client.get('flow')
# Nordic 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.1.tar.gz (4.2 kB view hashes)

Uploaded Source

Built Distribution

statnett_api_client-0.1.1-py3-none-any.whl (6.1 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