Skip to main content

MessagePack (de)serializer.

Project description

Author:

INADA Naoki

Version:
0.4.6
Date:
2015-03-13
https://secure.travis-ci.org/msgpack/msgpack-python.png

What’s this

MessagePack is a fast, compact binary serialization format, suitable for similar data to JSON. This package provides CPython bindings for reading and writing MessagePack data.

Install

$ pip install msgpack-python

PyPy

msgpack-python provides pure python implementation. PyPy can use this.

Windows

When you can’t use binary distribution, you need to install Visual Studio or Windows SDK on Windows. Without extension, using pure python implementation on CPython runs slowly.

For Python 2.7, Microsoft Visual C++ Compiler for Python 2.7 is recommended solution.

For Python 3.5, Microsoft Visual Studio 2015 Community Edition or Express Edition can be used to build extension module.

How to use

One-shot pack & unpack

Use packb for packing and unpackb for unpacking. msgpack provides dumps and loads as alias for compatibility with json and pickle.

pack and dump packs to file-like object. unpack and load unpacks from file-like object.

>>> import msgpack
>>> msgpack.packb([1, 2, 3])
'\x93\x01\x02\x03'
>>> msgpack.unpackb(_)
[1, 2, 3]

unpack unpacks msgpack’s array to Python’s list, but can unpack to tuple:

>>> msgpack.unpackb(b'\x93\x01\x02\x03', use_list=False)
(1, 2, 3)

You should always pass the use_list keyword argument. See performance issues relating to use_list option below.

Read the docstring for other options.

Streaming unpacking

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(range(i)))

buf.seek(0)

unpacker = msgpack.Unpacker(buf)
for unpacked in unpacker:
    print unpacked

Packing/unpacking of custom data type

It is also possible to pack/unpack custom data types. Here is an example for datetime.datetime.

import datetime

import msgpack

useful_dict = {
    "id": 1,
    "created": datetime.datetime.now(),
}

def decode_datetime(obj):
    if b'__datetime__' in obj:
        obj = datetime.datetime.strptime(obj["as_str"], "%Y%m%dT%H:%M:%S.%f")
    return obj

def encode_datetime(obj):
    if isinstance(obj, datetime.datetime):
        return {'__datetime__': True, 'as_str': obj.strftime("%Y%m%dT%H:%M:%S.%f")}
    return obj


packed_dict = msgpack.packb(useful_dict, default=encode_datetime)
this_dict_again = msgpack.unpackb(packed_dict, object_hook=decode_datetime)

Unpacker’s object_hook callback receives a dict; the object_pairs_hook callback may instead be used to receive a list of key-value pairs.

Extended types

It is also possible to pack/unpack custom data types using the ext type.

>>> import msgpack
>>> import array
>>> def default(obj):
...     if isinstance(obj, array.array) and obj.typecode == 'd':
...         return msgpack.ExtType(42, obj.tostring())
...     raise TypeError("Unknown type: %r" % (obj,))
...
>>> def ext_hook(code, data):
...     if code == 42:
...         a = array.array('d')
...         a.fromstring(data)
...         return a
...     return ExtType(code, data)
...
>>> data = array.array('d', [1.2, 3.4])
>>> packed = msgpack.packb(data, default=default)
>>> unpacked = msgpack.unpackb(packed, ext_hook=ext_hook)
>>> data == unpacked
True

Advanced unpacking control

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 deserialising 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.

Each of these methods may optionally write the packed data it reads to a callback function:

from io import BytesIO

def distribute(unpacker, get_worker):
    nelems = unpacker.read_map_header()
    for i in range(nelems):
        # Select a worker for the given key
        key = unpacker.unpack()
        worker = get_worker(key)

        # Send the value as a packed message to worker
        bytestream = BytesIO()
        unpacker.skip(bytestream.write)
        worker.send(bytestream.getvalue())

Notes

string and binary type

In old days, msgpack doesn’t distinguish string and binary types like Python 1. The type for represent string and binary types is named raw.

msgpack can distinguish string and binary type for now. But it is not like Python 2. Python 2 added unicode string. But msgpack renamed raw to str and added bin type. It is because keep compatibility with data created by old libs. raw was used for text more than binary.

Currently, while msgpack-python supports new bin type, default setting doesn’t use it and decodes raw as bytes instead of unicode (str in Python 3).

You can change this by using use_bin_type=True option in Packer and encoding=”utf-8” option in Unpacker.

>>> import msgpack
>>> packed = msgpack.packb([b'spam', u'egg'], use_bin_type=True)
>>> msgpack.unpackb(packed, encoding='utf-8')
['spam', u'egg']

ext type

To use ext type, pass msgpack.ExtType object to packer.

>>> import msgpack
>>> packed = msgpack.packb(msgpack.ExtType(42, b'xyzzy'))
>>> msgpack.unpackb(packed)
ExtType(code=42, data='xyzzy')

You can use it with default and ext_hook. See below.

Note for msgpack-python 0.2.x users

The msgpack-python 0.3 have some incompatible changes.

The default value of use_list keyword argument is True from 0.3. You should pass the argument explicitly for backward compatibility.

Unpacker.unpack() and some unpack methods now raises OutOfData instead of StopIteration. StopIteration is used for iterator protocol only.

Note about performance

GC

CPython’s GC starts when growing allocated object. This means unpacking may cause useless GC. You can use gc.disable() when unpacking large message.

use_list option

List is the default sequence type of Python. But tuple is lighter than list. You can use use_list=False while unpacking when performance is important.

Python’s dict can’t use list as key and MessagePack allows array for key of mapping. use_list=False allows unpacking such message. Another way to unpacking such object is using object_pairs_hook.

Development

Test

MessagePack uses pytest for testing. Run test with following command:

$ py.test

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

msgpack-python-0.4.8.tar.gz (113.6 kB view details)

Uploaded Source

Built Distributions

msgpack_python-0.4.8-cp35-cp35m-win_amd64.whl (74.4 kB view details)

Uploaded CPython 3.5m Windows x86-64

msgpack_python-0.4.8-cp35-cp35m-win32.whl (67.2 kB view details)

Uploaded CPython 3.5m Windows x86

msgpack_python-0.4.8-cp35-cp35m-manylinux1_i686.whl (257.9 kB view details)

Uploaded CPython 3.5m

msgpack_python-0.4.8-cp34-cp34m-win_amd64.whl (71.0 kB view details)

Uploaded CPython 3.4m Windows x86-64

msgpack_python-0.4.8-cp34-cp34m-win32.whl (66.4 kB view details)

Uploaded CPython 3.4m Windows x86

msgpack_python-0.4.8-cp34-cp34m-manylinux1_i686.whl (261.8 kB view details)

Uploaded CPython 3.4m

msgpack_python-0.4.8-cp27-cp27mu-manylinux1_i686.whl (242.0 kB view details)

Uploaded CPython 2.7mu

msgpack_python-0.4.8-cp27-cp27m-win_amd64.whl (71.4 kB view details)

Uploaded CPython 2.7m Windows x86-64

msgpack_python-0.4.8-cp27-cp27m-win32.whl (65.3 kB view details)

Uploaded CPython 2.7m Windows x86

msgpack_python-0.4.8-cp27-cp27m-manylinux1_i686.whl (242.0 kB view details)

Uploaded CPython 2.7m

File details

Details for the file msgpack-python-0.4.8.tar.gz.

File metadata

File hashes

Hashes for msgpack-python-0.4.8.tar.gz
Algorithm Hash digest
SHA256 1a2b19df0f03519ec7f19f826afb935b202d8979b0856c6fb3dc28955799f886
MD5 dcd854fb41ee7584ebbf35e049e6be98
BLAKE2b-256 21278a1d82041c7a2a51fcc73675875a5f9ea06c2663e02fcfeb708be1d081a0

See more details on using hashes here.

File details

Details for the file msgpack_python-0.4.8-cp35-cp35m-win_amd64.whl.

File metadata

File hashes

Hashes for msgpack_python-0.4.8-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 58c9c1d7891a35bddc6ee5dbec10d347a7ae4983169c24fc5fc8a57ae792ca76
MD5 d2c6d45ef0e373da547fee73e68d81e8
BLAKE2b-256 bbf5094d173d13a493ff70dbdd1de434e31da20a1423f584385144cb9ee6ff6d

See more details on using hashes here.

File details

Details for the file msgpack_python-0.4.8-cp35-cp35m-win32.whl.

File metadata

File hashes

Hashes for msgpack_python-0.4.8-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 f52d9f96df952369fe4adcb0506e10c1c92d47f653f601a66da2a26a7e7141ea
MD5 893a29ae3d3c54c0aab60e8e6216f989
BLAKE2b-256 2a4d7554885af92e860724e9390c978a98b48a0df7834771ca5b0eeb4281d678

See more details on using hashes here.

File details

Details for the file msgpack_python-0.4.8-cp35-cp35m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for msgpack_python-0.4.8-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1e68a277e4180baa7789be36f27f0891660205f6209f78a32282d3c422873d78
MD5 c257a9e5ccf858edc8d91ef96c801f95
BLAKE2b-256 b8a41163199f6e6034cbdbe71f9a590ab0223641a296365a677c045f1fafbe8f

See more details on using hashes here.

File details

Details for the file msgpack_python-0.4.8-cp34-cp34m-win_amd64.whl.

File metadata

File hashes

Hashes for msgpack_python-0.4.8-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 8f36890251f20d96267618cf64735759d7ef7e91bc0b86b9480547d2d1397a68
MD5 96a463609a888cfe27a5d3704197f217
BLAKE2b-256 ec4e3bd6491595cd6d79592f0756f0529b627438cc8d80e7fead0516b08f2ba4

See more details on using hashes here.

File details

Details for the file msgpack_python-0.4.8-cp34-cp34m-win32.whl.

File metadata

File hashes

Hashes for msgpack_python-0.4.8-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 7e1b12ea0134460052fabcfaa0f488ec0fc21deb14832d66236fd2870757d8f1
MD5 fa4ad72bed08db94b4b2087d98477cbd
BLAKE2b-256 23897dda3b60a6400515cb52a58f61eebff54086afd07467e7b7ccd6802905f2

See more details on using hashes here.

File details

Details for the file msgpack_python-0.4.8-cp34-cp34m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for msgpack_python-0.4.8-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 95d70edd50e3d2f6ea1189f77190e4a0172626e7405ddd1689f3f64814447cba
MD5 eac5c3460733e218ec105641f2854c23
BLAKE2b-256 16d190f3e4f17e3e54b5de30de40e40fddce0f4126e3b19d0b942f0e9ab6378e

See more details on using hashes here.

File details

Details for the file msgpack_python-0.4.8-cp27-cp27mu-manylinux1_i686.whl.

File metadata

File hashes

Hashes for msgpack_python-0.4.8-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 658c1cd5dcf7786e0e7a6d523cd0c5b33f92e139e224bd73cb3a23ada618d2dc
MD5 43f9630c683a8b756f11f8f4f5c17bed
BLAKE2b-256 a177b973f86e0e8276092ee53dfdc9557ddb1376a282cdc418b168b0c62f2548

See more details on using hashes here.

File details

Details for the file msgpack_python-0.4.8-cp27-cp27m-win_amd64.whl.

File metadata

File hashes

Hashes for msgpack_python-0.4.8-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 e165006f7e3d2612f1bffe2f6f042ca317d8df724d8b72a39b14c2e46c67eaae
MD5 e7de5a70010ef0920c18d2b41704a0ce
BLAKE2b-256 86665e5ad4e74863263ed5fcc7cb923876652edb6ae20e357598f6dc7ca014aa

See more details on using hashes here.

File details

Details for the file msgpack_python-0.4.8-cp27-cp27m-win32.whl.

File metadata

File hashes

Hashes for msgpack_python-0.4.8-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 920bbbaee07ad048a4d2b4160901b19775c61ef9439f856c74509e763a326249
MD5 6abae0807eccdbe4c8bfe9aa9931a9b1
BLAKE2b-256 59cab8048e184a2edb5b3cd46f38be130e87cbce77f4168ed62344bc33df3e1b

See more details on using hashes here.

File details

Details for the file msgpack_python-0.4.8-cp27-cp27m-manylinux1_i686.whl.

File metadata

File hashes

Hashes for msgpack_python-0.4.8-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 637b012c9ea021de7a7a75d6ff5e82cfef6694babd7e14bb9a3adcb2a5bd52f0
MD5 0b4b2cc8361f01994cecab9c9d49ea50
BLAKE2b-256 baf13e53ae3cede8715e7e06503660624d22372f84e7bc37f6ff96ed77b15863

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page