Metadata-Version: 2.1
Name: mrpacker
Version: 1.6
Summary: Binary object packer for python
Home-page: https://github.com/MarkReedZ/mrpacker
Download-URL: https://github.com/MarkReedZ/mrpacker/archive/v1.6.tar.gz
Author: Mark Reed
Author-email: MarkReedZ@mail.com
License: MIT License
Keywords: mrpacker
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: C
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python
Description-Content-Type: text/markdown
License-File: LICENSE.txt

## MrPacker

MrPacker is a binary object packer for python that is faster and smaller than JSON.

To install it just run Pip as usual:

```sh
    $ pip install mrpacker
```

## Usage

May be used as a replacement for json

```python
  import mrpacker
  o = { "name":"mrpacker", "awesome?":"yes" }
  b = mrpacker.pack( o )
  print( mrpacker.unpack(b) )
```

## Benchmarks

See b.py and benchmark your own real world cases as performance may vary

