Metadata-Version: 2.1
Name: pyeloverblik
Version: 0.2.0
Summary: Python wrapper for eloverblik.dk API.
Home-page: https://github.com/JonasPed/pyeloverblik
Author: Jonas Pedersen
Author-email: jonas@pedersen.ninja
License: Apache 2.0
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE

# pyeloverblik
Python wrapper for eloverblik.dk api.

## 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.

```python3

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

or 

client = Eloverblik(REFRESH_TOKEN)
data = client.get_time_series(METERING_POINT, from_date='2021-01-01', to_date='2021-01-03', aggregation='Hour')


```


