mikkelrask / pyeloverblik

Python wrapper for eloverblik.dk api

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pyeloverblik

Python wrapper for eloverblik.dk api.

It can read the following data from eloverblik.

  • Hourly data
  • Monthy data
  • Fees

Installation

Install the library from PyPI: pip install pyeloverblik.

Usage

After installation either call the library directly with python -m pyeloverblik or integrate the library in your code like below.

client = Eloverblik(REFRESH_TOKEN)
data = client.get_latest(METERING_POINT)

or 

client = Eloverblik(REFRESH_TOKEN)
data = client.get_time_series(METERING_POINT, from_date=datetime.now()-timedelta(days=2), to_date=datetime.now(), aggregation='Hour')

# In above example from_date and to_date is datetime objects.

About

Python wrapper for eloverblik.dk api

License:Apache License 2.0


Languages

Language:Python 100.0%