MessagePack serializer implementation for Python msgpack.org[Python] https://msgpack.org/
Find a file
INADA Naoki 1a81f6364d 0.1.10
2011-08-22 02:09:51 +09:00
msgpack Fixed encoding argument for unpacker in Python 2011-08-22 01:52:45 +09:00
test Fix error in tests. 2011-08-22 01:57:23 +09:00
test3 Fixed encoding argument for unpacker in Python 2011-08-22 01:52:45 +09:00
.gitignore python: Add msgpack/_msgpack.c to .gitignore 2010-11-02 14:02:10 +09:00
ChangeLog.rst 0.1.10 2011-08-22 02:09:51 +09:00
COPYING 0.1.10 2011-08-22 02:09:51 +09:00
Makefile Add msgpack.version as version tuple. 2010-09-02 09:54:38 +09:00
MANIFEST.in Add download url. 2010-04-29 07:08:41 +09:00
README.rst Fix install command for Windows. 2011-08-21 19:29:33 +09:00
setup.py 0.1.10 2011-08-22 02:09:51 +09:00

===========================
MessagePack Python Binding
===========================

:author: INADA Naoki
:version: 0.1.0
:date: 2009-07-12

HOW TO USE
-----------
You can read document in docstring after `import msgpack`


INSTALL
---------
Cython_ is required to build msgpack.

.. _Cython: http://www.cython.org/

posix
''''''
You can install msgpack in common way.

    $ python setup.py install

Windows
''''''''
MessagePack requires gcc currently. So you need to prepare
MinGW GCC.

    $ python setup.py build -c mingw32
    $ python setup.py install

TEST
----
MessagePack uses `nosetest` for testing.
Run test with following command:

    $ nosetests test


..
    vim: filetype=rst