Metadata-Version: 2.1
Name: pyechorobotics
Version: 0.0.3
Summary: Access API for echorobotics robot lawn mowers
Author-email: functionpointer <suspendfunction@gmail.com>
License: GNU General Public License v3 or later (GPLv3+)
Project-URL: homepage, https://github.com/functionpointer/pyechorobotics
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.md

pyechorobotics
=============

![echorobotics_logo](https://brands.home-assistant.io/_/echorobotics/logo@2x.png)

Allows control and reads status of robot lawn mowers by echorobotics.

Example:
```python
import sys

import echoroboticsapi
import aiohttp
import asyncio
import logging


async def main():
    async with aiohttp.ClientSession(cookies=echoroboticsapi.create_cookies(user_id="your-user-id", user_token="user-user-token")) as session:
        api = echoroboticsapi.Api(session, robot_ids=["your-robot-id"])
        print(await api.last_statuses())
        print(await api.set_mode("chargeAndWork"))


if __name__ == "__main__":
    logging.basicConfig(stream=sys.stdout, level=logging.DEBUG)
    loop = asyncio.new_event_loop()
    loop.run_until_complete(main())

```

See also src/main.py
