MessagePack serializer implementation for Python msgpack.org[Python] https://msgpack.org/
Find a file
2012-04-21 14:25:07 +09:00
msgpack Merge branch 'master' of github.com:msgpack/msgpack-python 2012-03-08 16:59:56 +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 add *.so to .gitignore 2011-12-25 12:48:36 +09:00
ChangeLog.rst release 0.1.13 2012-04-21 14:25:07 +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 release 0.1.13 2012-04-21 14:25:07 +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