Metadata-Version: 2.1
Name: timeleap-sia
Version: 1.0.1
Summary: Sia serialization for Python
Home-page: https://github.com/TimeleapLabs/py-sia
Author: Pouya Eghbali
Author-email: pouya@timeleap.swiss
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Sia

Sia serialization for Python

## What is Sia?

Sia is the serialization library used by [Unchained](https://github.com/TimeleapLabs/unchained). Check more details on [Sia's official documentation](https://timeleap.swiss/docs/products/sia).

## Installation

```bash
pip install timeleap-sia
```

## Usage

```python
from sia import Sia

sia = Sia()
sia.add_string8("Hello")
sia.add_uint8(25)
sia.add_string32("World")

print(sia.content)
# bytearray(b'\x05Hello\x19\x05\x00\x00\x00World')
```
