Numpy data serialization using msgpack
Project description
Package Description
This package provides encoding and decoding routines that enable the serialization and deserialization of numerical and array data types provided by numpy using the highly efficient msgpack format. Serialization of Python’s native complex data types is also supported.
Installation
msgpack-numpy requires msgpack-python and numpy. If you have pip installed on your system, run
pip install msgpack-numpy
to install the package and all dependencies. You can also download the source tarball, unpack it, and run
python setup.py install
from within the source directory.
Usage
The easiest way to use msgpack-numpy is to call its monkey patching function after importing the Python msgpack package:
import msgpack import msgpack_numpy as m m.patch()
This will automatically force all msgpack serialization and deserialization routines (and other packages that use them) to become numpy-aware. Of course, one can also manually pass the encoder and decoder provided by msgpack-numpy to the msgpack routines:
import msgpack import msgpack_numpy as m import numpy as np x = np.random.rand(5) x_enc = msgpack.packb(x, default=m.encode) x_rec = msgpack.unpackb(x_enc, object_hook=m.decode)
msgpack-numpy will try to use the binary (fast) extension in msgpack by default. If msgpack was not compiled with Cython (or if the MSGPACK_PUREPYTHON variable is set), it will fall back to using the slower pure Python msgpack implementation.
Development
The latest source code can be obtained from GitHub.
License
This software is licensed under the BSD License. See the included LICENSE.rst file for more information.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for msgpack_numpy-0.4.3.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7253c389db3d858101bc38272c2f14936f5760e889cccf0d5683375327b6915d |
|
MD5 | c052e2b8d79d28e9003f4302937d2069 |
|
BLAKE2b-256 | ad45464be6da85b5ca893cfcbd5de3b31a6710f636ccb8521b17bd4110a08d94 |