msgpack/python/README

39 lines
634 B
Plaintext
Raw Normal View History

2009-06-27 12:03:00 +09:00
===========================
MessagePack Python Binding
===========================
:author: Naoki INADA
2009-07-12 20:02:21 +09:00
:version: 0.1.0
:date: 2009-07-12
2009-06-27 12:03:00 +09:00
HOW TO USE
-----------
You can read document in docstring after `import msgpack`
INSTALL
---------
2009-07-12 09:29:11 +09:00
Cython_ is required to build msgpack.
2009-06-27 12:03:00 +09:00
.. _Cython: http://www.cython.org/
2009-07-12 09:29:11 +09:00
posix
2009-06-27 12:03:00 +09:00
''''''
You can install msgpack in common way.
$ python setup.py install
Windows
''''''''
MessagePack requires gcc currently. So you need to prepare
MinGW GCC.
2009-07-12 09:29:11 +09:00
$ python setup.py install -c mingw32
2009-06-29 08:23:27 +09:00
TEST
----
MessagePack uses nosetest for testing.
Run test with following command:
$ nosetests test