Metadata-Version: 2.1
Name: wyzeapy
Version: 0.5.2b1
Summary: Python client for private Wyze API
Home-page: https://github.com/JoshuaMulliken/wyzeapy
Author: Mulliken LLC
Author-email: joshua@mulliken.net
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/JoshuaMulliken/wyzeapy/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Framework :: aiohttp
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

<!--
SPDX-FileCopyrightText: 2021 Mulliken, LLC <joshua@mulliken.net>

SPDX-License-Identifier: GPL-3.0-only
-->

# Wyzeapy

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

## Used By

This project is used by the [ha-wyzeapi](https://github.com/JoshuaMulliken/ha-wyzeapi) project. Let me know if you are utilizing it so that I can feature your project here!

  
## Usage/Examples

Getting logged in:

```python
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:

- [@shauntarves](https://github.com/shauntarves): for contributing the App ID and Signing Secret


## License

[GNU GPLv3](https://choosealicense.com/licenses/gpl-3.0/)

  
## Appendix

[Full doc reference](https://joshuamulliken.github.io/wyzeapy/wyzeapy/) - Please note that I am still working on doc 
strings so please be patient

  


