msgpack-python icon indicating copy to clipboard operation
msgpack-python copied to clipboard

MessagePack serializer implementation for Python msgpack.org[Python]

Results 22 msgpack-python issues
Sort by recently updated
recently updated
newest added

I've seen a number of issues (usually newer versions of Python are different architectures) where the solution is to set `MSGPACK_PUREPYTHON=1` to build a pure-Python wheel. I'm currently working on...

Not able to build latest version 1.0.7 with latest Python 3.12.0 on "linux/arm/v7" platform. Older version 1.0.5, with older Python 3.11.5 even with latest Python 3.12.0, on "linux/arm/v7" platform is...

The unpacker currently requires the file to return bytes. ``` cdef read_from_file(self): next_bytes = self.file_like_read( min(self.read_size, self.max_buffer_size - (self.buf_tail - self.buf_head) )) if next_bytes: self.append_buffer(PyBytes_AsString(next_bytes), PyBytes_Size(next_bytes)) else: self.file_like = None...

Hi, I'm a user of msgpack by way of saltstack; which leverages a msgpack Unpacker object for each long lived tcp connection. I know this isn't very exact, but after...

Thanks to cibuildwheel, we can provide wheels for most common platforms. Dropping C++ source from source distribution will make build process simple.

Set of minor conf.py cleanups.

Giving this flexibility to users means that internal reallocations can be avoided if the buffer size is good enough, at the expense of potentially allocating more memory than needed. This,...

This PR is to add a monthly downloads count badge to the README. There are more badges and widgets, you can view them here - https://piptrends.com/widgets/msgpack (If necessary, the link...