MessagePack serializer implementation for Python msgpack.org[Python] https://msgpack.org/
Find a file
tailhook 752e3d1b78 Implemented encoding for strings
* Packer by default uses `utf-8` encoding by default
* Unpacker uses `None` by default, so no decoding is done
* Both pack and unpack has `encoding` and `unicode_errors` arguments,
  if `encoding` is `None` no encoding/decoding is done, otherwise
  it is python codec. `unicode_errors` is supplied as `errors`
  parameter to codec
2011-04-15 18:39:17 +03:00
msgpack Implemented encoding for strings 2011-04-15 18:39:17 +03:00
test Implemented encoding for strings 2011-04-15 18:39:17 +03:00
test3 Implemented encoding for strings 2011-04-15 18:39:17 +03:00
.gitignore python: Add msgpack/_msgpack.c to .gitignore 2010-11-02 14:02:10 +09:00
ChangeLog.rst python: 0.1.9 2011-01-29 07:31:06 +09:00
COPYING Add COPYING file to python package. 2010-04-29 07:01:16 +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 Tiny fix in README 2010-01-25 12:21:46 +09:00
setup.py python: 0.1.9 2011-01-29 07:31:06 +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 install -c mingw32

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

    $ nosetests test


..
    vim: filetype=rst