Preserve numpy arrays shapes while serializing them to bytes
Project description
numpy-serializer
Motivation
I couldn't find a nice high-level package that is fast enough to serialize and deserialize numpy arrays while preserving the type and shape informations.
Installation
pip install numpy-serializer
How to use
import numpy_serializer as ns
import numpy as np
a = np.random.normal(size=(50,120,150))
b = ns.to_bytes(a)
c = ns.from_bytes(b)
assert np.array_equal(a,c)
License
This project is licensed under the GPL-3 license.
Project details
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
File details
Details for the file numpy-serializer-0.1.3.tar.gz
.
File metadata
- Download URL: numpy-serializer-0.1.3.tar.gz
- Upload date:
- Size: 1.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a2261aa82a9c523e1193ee68c9abdf18f368c0f946924170f317357173172e17 |
|
MD5 | 46571023d1bf3989ae7ac42dd8299874 |
|
BLAKE2b-256 | 7f12a0fec1eed8dbb27046bc2d1b5212e160aefe1dabe3b3237256a2d7c8dd10 |
File details
Details for the file numpy_serializer-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: numpy_serializer-0.1.3-py3-none-any.whl
- Upload date:
- Size: 14.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9df399ae5911c0ebcf9cf63512ea6c49373f66fb2374561c0001b94441735bc1 |
|
MD5 | 3a4bb600daf87364111271927e9ec594 |
|
BLAKE2b-256 | d9d4407aee3092e37bbade8592890f789b5510d8581cb2e1e75abfff3a6a0a57 |