Metadata-Version: 2.4
Name: amsgpack
Version: 0.0.3
Summary: Another MessagePack library
Author-email: Arseniy Terekhin <senyai@gmail.com>
License: MIT
Project-URL: Source, https://github.com/senyai/amsgpack
Keywords: msgpack,messagepack,serializer,serialization,binary
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Typing :: Typed
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

## Python Message Pack module

C library for python 3.10+.


### Installation
`pip install amsgpack`


### Example


```Python console
>>> from amsgpack import packb
>>> packb({"compact": True, "schema": 0})
bytearray(b'\x82\xa7compact\xc3\xa6schema\x00')
```

```Python console
>>> from amsgpack import Unpacker
>>> unpacker = Unpacker()
>>> unpacker.feed(b'\x82\xa7compact\xc3\xa6schema\x00')
>>> next(unpacker)
{'compact': True, 'schema': 0}
```
