Metadata-Version: 2.4
Name: nitroglyph
Version: 0.1.1
Summary: Python bindings for NitroGlyph
Project-URL: Homepage, https://github.com/adhil/nitro-glyph
Project-URL: Source, https://github.com/adhil/nitro-glyph
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# nitroglyph

`nitroglyph` provides Python bindings for the NitroGlyph driver.

## Install

```bash
pip install nitroglyph
```

For development from this repository:

```bash
cd python
pip install -e .
```

## Example

```python
from nitroglyph import NitroGlyphController, Mode, Direction

controller = NitroGlyphController()
controller.enable()
controller.shifting((255, 0, 0), brightness=80, direction=Direction.RIGHT_TO_LEFT, duration=5)
controller.close()
```
