msgpack-python
msgpack-python copied to clipboard
MessagePack serializer implementation for Python msgpack.org[Python]
First of all currently it is not possible to use straight `sphinx-build` command to build documentation out of source tree ```console + /usr/bin/sphinx-build -n -T -b man docs build/sphinx/man Running...
The https://reuse.software specification is the standard for providing machine-readable licensing and copyright information. I believe: * machine-readable metadata is a good thing. * licensing and copyright matter * automation is...
Hi there, I'm trying to get the internal data of the Packer object in order to avoid unneeded copying, as documented [here](https://msgpack-python.readthedocs.io/en/latest/advanced.html). The code is as follow : ````python import...
In the course of using msgpack in a project I've written some basic type stubs for the parts of the API I'm using. I don't think it would be too...
The PR removes python2 references and cases. `tox` command is green on cpython3.9 (py39-c and py39-pure) on my local machine. Close #518
According to [pypi page](https://pypi.org/project/msgpack/), the python2 support has been dropped with release 1.0. The main branch in the repository is currently v.1.0.4 release (https://github.com/msgpack/msgpack-python/blob/main/msgpack/__init__.py#L9). However, there is python2 specific code...
Hi there, It seems that since version 1.0.6, the msgpack wheels ship the .cpp, .h and .pyx files. Is that intended? This showed up in the pip vendoring upgrade process...
This library appears to leak memory in Unpacker method under Python 3.12.1 reproducer script: ``` import msgpack from io import BytesIO while True: buf = BytesIO() for i in range(100):...
The Unpacker fails to retrieve and unpack all the data while streaming with a big data (e.g. 10GiB). `td-client-python` uses `msgpack-python` internally to unpack the receiving data while streaming. https://github.com/treasure-data/td-client-python/blob/1.2.1/tdclient/job_api.py#L220-L244...