Library for connecting to dreo cloud.
Report Bug
·
Request Feature
Simple implementation for logging in to your Dreo cloud account and fetch device information.
How to get and use pydreo-cloud.
To download pydreo-cloud, either fork this github repo or use Pypi via pip.
$ pip install pydreo-cloud
You can use pydreo-cloud in your project.
As of right now there's not much you can do. You can login and get device info from Dreo cloud:
from pydreo-cloud.client import DreoClient
manage = DreoClient("USERNAME", "PASSWORD")
manage.login()
# get list of devices
devices = manage.get_devices()
# get status of devices
status = manage.get_status("DEVICESN")
Distributed under the MIT License. See LICENSE
for more information.
Dreo Team: developer@dreo.com
Project Link: https://github.com/dreo-team/pydreo-cloud