SecKatie / wyzeapy

35 stars 26 forks source link

Wyzeapy

A python library for the (unofficial) Wyze Labs web APIs.

Used By

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!

Usage/Examples

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())

Thanks to:

License

GNU GPLv3

Appendix

Full doc reference - Please note that I am still working on doc strings so please be patient