Skip to main content

HDF5-based serialization library for Python datatypes

Project description

RWA-python serializes Python datatypes and stores them in HDF5 files.

Code example:

from rwa import HDF5Store

class CustomClass(object):
        __slots__ = 'my_slot'
        def __init__(self, slot=None):
                self.my_slot = slot

# make any complex construct
any_object = CustomClass((CustomClass(5), dict(a=1)))

# serialize
hdf5 = HDF5Store('my_file.h5', 'w')
hdf5.poke('my object', any_object)
hdf5.close()

# deserialize
hdf5 = HDF5Store('my_file.h5', 'r')
reloaded_object = hdf5.peek('my object')
hdf5.close()

With Python3, RWA-python serialization is fully automatic. The library generates serialization schemes for most custom types. When deserializing objects, it also looks for and loads the modules where the corresponding types are defined.

If RWA-python complains about a type that cannot be serialized, a partial fix consists of ignoring this datatype:

hdf5_not_storable(type(unserializable_object))

With Python2, the library requires explicit definitions in most cases.

Installation

You will need Python >= 2.7 or >= 3.5.

pip install --user rwa-python

pip install will install some Python dependencies if missing, but you may still need to install the HDF5 reference library.

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

rwa-python-0.5.tar.gz (14.9 kB view hashes)

Uploaded Source

Built Distribution

rwa_python-0.5-py2.py3-none-any.whl (18.9 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page