Metadata-Version: 2.1
Name: mrpacker
Version: 1.3
Summary: Binary object packer for python
Home-page: https://github.com/MarkReedZ/mrpacker
Author: Mark Reed
Author-email: MarkReedZ@mail.com
License: MIT License
Download-URL: https://github.com/MarkReedZ/mrpacker/archive/v1.2.tar.gz
Description: ## 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 = msgpack.packb( o )
          print( mrpacker.unpack(b) )
        ```
        
        ## Benchmarks
        
        See b.py and benchmark your own real world cases as performance may vary
        
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
