msgpack/msgpack-python is a Backend project on GitHub, written primarily in Python. It has 2.1k stars. MessagePack serializer implementation for Python msgpack.org[Python]
Snapshot summary built from the project's own GitHub metadata — there's no written TopGit review yet. The page will update automatically when a full review is published.
WHY NO REVIEW YET
TopGit writes full reviews for the most-starred, most-requested repositories. This page is a snapshot until then — see the READ ME tab for the original README in full.
MessagePack is an efficient binary serialization format.
It lets you exchange data among multiple languages like JSON.
But it's faster and smaller.
This package provides CPython bindings for reading and writing MessagePack data.
Install
$ pip install msgpack
Pure Python implementation
The extension module in msgpack (msgpack._cmsgpack) does not support PyPy.
But msgpack provides a pure Python implementation (msgpack.fallback) for PyPy.
Windows
If you can't use a binary distribution, you need to install Visual Studio
or the Windows SDK on Windows.
Without the extension, the pure Python implementation on CPython runs slowly.
How to use
One-shot pack & unpack
Use packb for packing and unpackb for unpacking.
msgpack provides dumps and loads as aliases for compatibility with
json and pickle.
pack and dump pack to a file-like object.
unpack and load unpack from a file-like object.
Unpacker is a "streaming unpacker". It unpacks multiple objects from one
stream (or from bytes provided through its feed method).
import msgpack
from io import BytesIO
buf = BytesIO()
for i in range(100):
buf.write(msgpack.packb(i))
buf.seek(0)
unpacker = msgpack.Unpacker(buf)
for unpacked in unpacker:
print(unpacked)
[!IMPORTANT]
If Unpacker.unpack() stops with an exception other than OutOfData, that Unpacker cannot be reused.
Create a new Unpacker when reading another stream.
Packing/unpacking of custom data types
It is also possible to pack/unpack custom data types. Here is an example for
datetime.datetime.
As an alternative to iteration, Unpacker objects provide unpack,
skip, read_array_header, and read_map_header methods. The former two
read an entire message from the stream, respectively deserializing and returning
the result, or ignoring it. The latter two methods return the number of elements
in the upcoming container, so that each element in an array, or key-value pair
in a map, can be unpacked or skipped individually.
Notes
String and binary types in the old MessagePack spec
Early versions of msgpack didn't distinguish string and binary types.
The type for representing both string and binary types was named raw.
You can pack into and unpack from this old spec using use_bin_type=False
and raw=True options.
You can use it with default and ext_hook. See below.
Security
When unpacking data received from an unreliable source, msgpack provides
two security options.
max_buffer_size (default: 100*1024*1024) limits the internal buffer size.
It is also used to limit preallocated list sizes.
strict_map_key (default: True) limits the type of map keys to bytes and str.
While the MessagePack spec doesn't limit map key types,
there is a risk of a hash DoS.
If you need to support other types for map keys, use strict_map_key=False.
Performance tips
CPython's GC starts when the number of allocated objects grows.
This means unpacking may trigger unnecessary GC.
You can use gc.disable() when unpacking a large message.
A list is the default sequence type in Python.
However, a tuple is lighter than a list.
You can use use_list=False while unpacking when performance is important.
Major breaking changes in the history
msgpack 0.5
The package name on PyPI was changed from msgpack-python to msgpack in 0.5.
When upgrading from msgpack-0.4 or earlier, do pip uninstall msgpack-python before
pip install -U msgpack.
msgpack 1.0
Python 2 support
The extension module no longer supports Python 2.
The pure Python implementation (msgpack.fallback) is used for Python 2.
msgpack 1.0.6 drops official support of Python 2.7, as pip and
GitHub Action "setup-python" no longer supports Python 2.7.
Packer
Packer uses use_bin_type=True by default.
Bytes are encoded in the bin type in MessagePack.
The encoding option is removed. UTF-8 is always used.
Unpacker
Unpacker uses raw=False by default. It assumes str values are valid UTF-8 strings
and decodes them to Python str (Unicode) objects.
encoding option is removed. You can use raw=True to support old format (e.g. unpack into bytes, not str).
The default value of max_buffer_size is changed from 0 to 100 MiB to avoid DoS attacks.
You need to pass max_buffer_size=0 if you have large but safe data.
The default value of strict_map_key is changed to True to avoid hash DoS.
You need to pass strict_map_key=False if you have data that contain map keys
whose type is neither bytes nor str.
How does msgpack/msgpack-python compare to other Backend projects?
msgpack/msgpack-python is tracked by TopGit in the Backend category, with 2.1k GitHub stars and written in Python. Browse the Backend topic page on TopGit to compare it against similar projects by stars and activity.
Is msgpack/msgpack-python open source?
TopGit's metadata for msgpack/msgpack-python does not record a license. Most public repositories on GitHub ARE open source, but the exact terms vary — verify by opening the LICENSE file directly.
What else is in the Backend space?
msgpack/msgpack-python is tracked by TopGit under the Backend category, alongside 2 GitHub-tagged topics. Trending and Topics pages list peer repositories of comparable stars and language.
What is msgpack/msgpack-python?
msgpack/msgpack-python (msgpack/msgpack-python) is a Python project on GitHub. From the project's own README: MessagePack serializer implementation for Python msgpack.org[Python]
Where do I read more about msgpack/msgpack-python?
This TopGit page is a snapshot — the READ ME tab shows the project's own README content (links stripped, images preserved). The GitHub repository at github.com/msgpack/msgpack-python is the definitive source.
Why is msgpack/msgpack-python categorized under Backend?
TopGit places msgpack/msgpack-python in the Backend category based on its GitHub topics and description (tagged: "msgpack", "python"). Categories are assigned from real repository metadata, not editorial guesswork.
Read full README in the tab above.
Is msgpack-python worth your time?
ChatGPT, Claude and Perplexity can all read this page. Ask one of them what it makes of msgpack-python.