Metadata-Version: 2.1
Name: drift-bytes
Version: 0.1.0
Summary: A serializer for typed data in the Drift infrastructure.
Home-page: https://github.com/panda-official/DriftBytes
Author: PANDA, GmbH
Author-email: info@panda.technology
License: MPL-2.0
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
Classifier: Operating System :: Unix
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 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# Python DriftBytes

Python bindings for [DriftBytes](https://github.com/panda-official/DriftBytes).

## Requirements

* Python >= 3.8
* CMake >= 3.16 (for building)
* C++17 compiler (for building)
* conan >= 1.56, < 2.0 (for building)

## Installation

```bash
pip install drift-bytes
```

## Usage Example

```python
from drift_bytes import Bytes

byte_buffer = Bytes()
byte_buffer.set_int8(42)
val = byte_buffer.get_int8()

print(val)
```
