Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 1.25 KB

README.md

File metadata and controls

43 lines (33 loc) · 1.25 KB

Datadis

Python client for https://datadis.es

MIT License Semantic Release PyPI - Downloads Quality Gate Status PyPI - Python Version

Installation

From PyPi

pip install datadis

Usage/Examples

import asyncio
from datadis import get_token, get_supplies

token = asyncio.run(get_token('username', 'password'))

supplies = asyncio.run(get_supplies(token))

#[
#    {
#        "address": "home",
#        "cups": "1234ABC",
#        "postalCode": "1024",
#        "province": "madrid",
#        "municipality": "madrid",
#        "distributor": "Energy",
#        "validDateFrom": "2020/09",
#        "validDateTo": "2021/09",
#        "pointType": 0,
#        "distributorCode": "2"
#    }
#]