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.7.tar.gz (126.3 kB view details)

Uploaded Source

Built Distributions

msgpack_python-0.4.7-cp35-cp35m-manylinux1_x86_64.whl (266.5 kB view details)

Uploaded CPython 3.5m

msgpack_python-0.4.7-cp35-cp35m-manylinux1_i686.whl (256.7 kB view details)

Uploaded CPython 3.5m

msgpack_python-0.4.7-cp34-cp34m-manylinux1_x86_64.whl (270.1 kB view details)

Uploaded CPython 3.4m

msgpack_python-0.4.7-cp34-cp34m-manylinux1_i686.whl (261.2 kB view details)

Uploaded CPython 3.4m

msgpack_python-0.4.7-cp27-cp27mu-manylinux1_x86_64.whl (245.8 kB view details)

Uploaded CPython 2.7mu

msgpack_python-0.4.7-cp27-cp27mu-manylinux1_i686.whl (241.1 kB view details)

Uploaded CPython 2.7mu

msgpack_python-0.4.7-cp27-cp27m-manylinux1_x86_64.whl (245.7 kB view details)

Uploaded CPython 2.7m

msgpack_python-0.4.7-cp27-cp27m-manylinux1_i686.whl (241.1 kB view details)

Uploaded CPython 2.7m

File details

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

File metadata

File hashes

Hashes for msgpack-python-0.4.7.tar.gz
Algorithm Hash digest
SHA256 5e001229a54180a02dcdd59db23c9978351af55b1290c27bc549e381f43acd6b
MD5 eb2aad1081534ef3a9f32a0ecd350b9b
BLAKE2b-256 a3fbbcf568236ade99903ef3e3e186e2d9252adbf000b378de596058fb9df847

See more details on using hashes here.

File details

Details for the file msgpack_python-0.4.7-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for msgpack_python-0.4.7-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a952a3064853cddc38e21349b87d3f825c7a759307e46dfd75e0834165da689d
MD5 39c9a7905d80ae69bfad1e2a3a72dcdc
BLAKE2b-256 4f37a30bffa788d14dbbd2cbdd6cd794f023d6946b342f9883bd014e4e687c86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack_python-0.4.7-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cf8d257f830922682fce7ae545b8a4bdb11695897a40044f9f69aea257ceefcb
MD5 1af1ec29b7ba878875d440866f7907f2
BLAKE2b-256 53a07a54a76f3ebea07652a4d63b7e193c5eeec95a8c2fb9472e5287f3b1bb3a

See more details on using hashes here.

File details

Details for the file msgpack_python-0.4.7-cp34-cp34m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for msgpack_python-0.4.7-cp34-cp34m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 390e195e415a852d8ca1caa6b50a8b43fa7a8d7b1dd98e0d8e0ec0b66b82b07d
MD5 86c1f2a620ae675b7a969e3a3dcf5e4d
BLAKE2b-256 afe6c15762159cb23b8d3311cb3c909916a651748ea84682a3dcb61a5c3a0e51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack_python-0.4.7-cp34-cp34m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 119f5bfa285f76902bb120d47c6617d60fe65b9c3e73a0149f0c2f15ea377aae
MD5 098db3205e097804c3b63a5d9f65ba45
BLAKE2b-256 c5621800e01d0258089528e0a937563ce1415334be1813df2ee14d9f1e41df4c

See more details on using hashes here.

File details

Details for the file msgpack_python-0.4.7-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for msgpack_python-0.4.7-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cc38b1e90b9f5ddc0ffee573bb686268ed95f68bca0e8cc953e32fdda98993bd
MD5 a9e560d5acc1bd70b9a32aa24b96433a
BLAKE2b-256 f8db20f9f719ca0fbd2a8934d672a3a198e992e77039ac019cd1cd829e405d2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack_python-0.4.7-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 411c4eef3088e501d935565d4f0bcd3c86961458986cf79509cc2ce9be44f205
MD5 7d5df0a0303a00bf3e6b2393ccaac58d
BLAKE2b-256 b2594c2bd8daadc355bd6ebfcbdbad5eb249228dba46e5a0e77bdb0a7dd12d33

See more details on using hashes here.

File details

Details for the file msgpack_python-0.4.7-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for msgpack_python-0.4.7-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 cd64eef8bfffbd024e0b5e5927a3f79e9c47730ed3369541beac3524772a8d7d
MD5 6cc632101d3353f01e37d2191c52a6e2
BLAKE2b-256 621eb93422811a289e741fd28374774fa5daf7b5f230c26d4b8930cc782d863c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for msgpack_python-0.4.7-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f8ff5259be57052de125f0bb1ef7b5291dfb5453eb4268b1696892b1248f2b1e
MD5 d165cabcd804e6d6f1538ca442b31ffd
BLAKE2b-256 f7e1488c7266d5eba1f21c0fb16a09acbf18317060d8a96dc2396d5406c2147f

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