A python library for the (unofficial) Wyze Labs web APIs.
This project is used by the ha-wyzeapi project. Let me know if you are utilizing it so that I can feature your project here!
Getting logged in:
import asyncio
from wyzeapy import Wyzeapy
async def async_main():
client = await Wyzeapy.create()
await client.login("EMAIL", "PASSWORD")
if __name__ == "__main__":
loop = asyncio.get_event_loop()
loop.run_until_complete(async_main())
- @shauntarves: for contributing the App ID and Signing Secret
- @yoinx: for considerable contributions to the project
Full doc reference - Please note that I am still working on doc strings so please be patient