Metadata-Version: 2.1
Name: evcnet
Version: 0.1.1a6
Summary: 
Author: Henk Kraal
Author-email: hkraal@users.noreply.github.com
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: python-dotenv (>=0.21.0,<0.22.0)
Requires-Dist: requests (>=2.28.1,<3.0.0)
Description-Content-Type: text/markdown

# python-evcnet
Python client to retrieve data from evc-net.com


```python
from evcnet import Evcnet
e = Evcnet(
    url='https://evcompany.evc-net.com',
    username='username@example.com',
    password='s3cret'
)
e.login()
e.total_usage()
{'totalUsage': 5659, 'totalProvided': 4217}
```

