Skip to main content

QPack (de)serializer

Project description

QPack
=====

QPack is a fast and efficient serialization format like MessagePack.
One key difference is the support for flexible maps and arrays which
allows code to write directly to a qpack buffer without to need in
front the size of a map or array.

>Warning:
>--------
>This is still a BETA version which means the qpack format
>might change in the future.

Installation
------------

From PyPI (recommend)

```
pip install siridb-connector
```

From source code

```
python setup.py install
```

Pack
----

`qpack.packb(object)`

Unpack
----

Unpack serialized data. When decode is left None, each string
will be returned as bytes.

`qpack.unpackb(qp, decode=None)`


Example
-------

```python
import qpack

# define some test data
data = {'name': 'Iris', 'age': 3}

# serialize into qpack format
qp = qpack.packb(data)

# unpack the serialized data
unpacked = qpack.unpackb(qp, decode='utf-8')

# left see what we've got...
print(unpacked) # {'name': 'Iris', 'age': 3}
```

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

qpack-0.0.3.tar.gz (9.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page