Metadata-Version: 2.1
Name: pyevacalor
Version: 0.0.10
Summary: pyevacalor provides controlling Eva Calor heating devices connected via the IOT Agua platform of Micronova
Home-page: https://github.com/fredericvl/pyevacalor
Author: Frederic Van Linthoudt
Author-email: frederic.van.linthoudt@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: PyJWT (==1.7.1)
Requires-Dist: requests (==2.25.1)

# pyevacalor

pyevacalor provides controlling Eva Calor heating devices connected via the IOT Agua platform of Micronova.

## Example usage

```
from pyevacalor import evacalor

# 1c3be3cd-360c-4c9f-af15-1f79e9ccbc2a = random UUID
# You can generate one here: https://www.uuidgenerator.net/version4
connection = evacalor("john.smith@gmail.com", "mysecretpassword", "1c3be3cd-360c-4c9f-af15-1f79e9ccbc2a")

# Print the current air temperature for each device
for device in connection.devices:
  print(device.name + ": " + str(device.air_temperature))
```


