Metadata-Version: 1.1
Name: numpyson
Version: 0.4
Summary: UNKNOWN
Home-page: UNKNOWN
Author: holger krekel, David Moss
Author-email: UNKNOWN
License: UNKNOWN
Description: numpyson
        ========
        
        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
        
Platform: unix
Platform: linux
Platform: osx
Platform: win32
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
