Metadata-Version: 2.3
Name: retis
Version: 1.5.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
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: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python
Classifier: Programming Language :: Rust
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Summary: Python bindings for Retis events
Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
Project-URL: HomePage, https://github.com/retis-org/retis
Project-URL: Documentation, https://retis.readthedocs.io/
Project-URL: Repository, https://github.com/retis-org/retis

# retis

Python bindings for [retis](https://retis.readthedocs.io/en/stable/) events.

This python library can be used to read and post-process retis events.

Example:

```python
from retis import EventFile

reader = EventFile("retis.data")

for e in reader.events():
    print(e.show())
```

