MessagePack serializer implementation for Python msgpack.org[Python] https://msgpack.org/
Find a file
2012-06-26 13:21:10 +09:00
msgpack Update msgpack version. 2012-06-26 13:21:10 +09:00
test Fix tests to pass. 2012-06-19 14:20:56 +09:00
.gitignore Add ".tox" to .gitignore 2012-06-19 13:40:00 +09:00
ChangeLog.rst Start 0.1.14dev 2012-06-19 14:31:32 +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 test/ and test3/ to MANIFEST.in 2011-09-02 16:16:08 +09:00
README.rst Fix install command for Windows. 2011-08-21 19:29:33 +09:00
setup.py Start 0.1.14dev 2012-06-19 14:31:32 +09:00
tox.ini Fix tests to pass. 2012-06-19 14:20:56 +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