Metadata-Version: 2.4
Name: pyozo
Version: 0.0.1
Summary: Pure-Python Ozobot communication library.
Author: Kaloyan Tenchov
License-Expression: MIT
Project-URL: Homepage, https://github.com/zayfod/pyozo
Project-URL: Issues, https://github.com/zayfod/pyozo/issues
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: bleak
Dynamic: license-file

pyozo
=====

`pyozo` is a pure-Python communication library and a tool for exploring the hardware and software of [Ozobot](https://ozobot.com/) robots.

It is unstable and heavily under development.


Usage
-----

```python
import asyncio
import pyozo


async def main():
    async with pyozo.get_robot() as robot:
        name = await robot.get_name()
        print(f"Hello {name}!")


asyncio.run(main())
```


Requirements
------------

- [Python](https://www.python.org/downloads/) 3.11 or newer
- [Bleak](https://github.com/hbldh/bleak) - a cross-blatform Bluetooth LE client library
- Ozobot Evo firmware 3.x.x


Installation
------------

Using pip:

```
pip install pyozo
```

From source:

```
git clone https://github.com/zayfod/pyozo.git
cd pyozo
pip install .
```

From source, for development:

```
git clone https://github.com/zayfod/pyozo.git
cd pyozo
pip install -r requirements.txt
pip install -e .
```


Support
-------

Bug reports and changes should be sent via GitHub:

[https://github.com/zayfod/pyozo](https://github.com/zayfod/pyozo)


Disclaimer
----------

This project is not affiliated with [Ozo EDU, Inc.](https://ozobot.com/)
