No project description provided
Project description
cross py2/py3 python object serializer, currently using and extending jsonpickle to dump/load python objects with a primary focus on numpy/pandas types.
The main purpose of numpyson is to allow dumping under a python3 interpreter and loading under python2 and vice versa. This is a use case that is not covered by current serializers AFAIK.
quick simple API example:
import numpyson import numpy s = numpyson.dumps(numpy.array([1,2,3])) data = numpyjson.loads(s) assert data.to_list() == [1,2,3]
Currently supported:
numpy arrays and some other numpy types
pandas.TimeSeries
pandas.DataFrame
pandas.DateTimeIndex
pandas.Int64Index
pandas.Float64Index
pandas.Index
nested python data structures with the above types
0.4
fix bug: respect ordering when serializing/deserializing ndarrays
0.3
depend on pandas>=0.13.1 because we are using Float64Index which does not exist in pandas-0.12
support numpy.float64 and numpy.int64
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
File details
Details for the file numpyson-0.4.tar.gz
.
File metadata
- Download URL: numpyson-0.4.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f192ee4206bedc5bf71ad02edc0d5bd0cd10a521b4596dafb1cea9528a3888d4 |
|
MD5 | ad56ca20c62c46b68465f6b5110c6224 |
|
BLAKE2b-256 | 8e72dde1cac188714e734c4b8a7517665c7cc486dc48911cb836fa237cc2e613 |