Metadata-Version: 2.1
Name: charachorder
Version: 0.1.0
Summary: A wrapper for CharaChorder's Serial API written in Python
Home-page: https://github.com/GetPsyched/charachorder.py
Author: GetPsyched
Author-email: dev@getpsyched.dev
License: MIT
Project-URL: Issue tracker, https://github.com/GetPsyched/charachorder.py/issues
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Classifier: Typing :: Typed
Requires-Python: >=3.8.0
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyserial

# charachorder.py

A wrapper for CharaChorder's Serial API written in Python

> **Warning**
> This project is in beta; breaking changes will occur without notice. Please wait for v1.0.0

## Usage

```py
from charachorder import CCDevice, CCSerial

for device in CCDevice.list_devices():
    with CCSerial(device) as cc_serial:
        print(cc_serial.get_device_id())
```
