Metadata-Version: 2.1
Name: voxe
Version: 0.0.4
Summary: A simple transport layer protocol
Home-page: https://github.com/aiyojun/pypi-repo
Author: aiyojun
Author-email: aiyojun@gmail.com
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown

# Project description

Voxe is a kind of simple transport layer protocol.

## Usage

```python
import voxe

data = voxe.dumps(12, 'hello voxe', 3.14)
a, b, c = voxe.loads(data)
print(data)
print(a, b, c)
```
