Metadata-Version: 2.1
Name: easytuio
Version: 0.1.1
Summary: A Python library for handling TUIO messages
Author-email: Vishnu <vishnu@acemetrics.com>
License: MIT License
Project-URL: Documentation, https://gitlab.com/acemetrics-technologies/easytuio#README
Project-URL: Source, https://gitlab.com/acemetrics-technologies/easytuio
Project-URL: Tracker, https://gitlab.com/acemetrics-technologies/easytuio/-/issues
Keywords: TUIO,multi-touch,tangible interaction,OSC
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: python-osc

# EasyTUIO

EasyTUIO is a Python library for parsing and handling TUIO messages, used in multi-touch and tangible interfaces.

## Features
- Supports `2Dcur`, `2Dobj`, and `2Dblb` profiles.
- Customizable event listeners.
- Lightweight and easy to integrate.

## Installation
```bash
pip install easytuio
```

## Usage
```python
from easytuio import TUIOClient

def handle_cursor_event(cursor):
    print(f"Cursor Event: {cursor}")

client = TUIOClient()


client.register_callback("2Dcur", handle_cursor_event)
client.start()
```
