Pickles Python objects to a HDF5 file.
You may wish to use a single instance of this class for multiple
objects to preserve references. It should be safe to call the dump
method multiple times, for different paths.
|
__init__(self,
file,
type_map=None)
x.__init__(...) initializes x; see x.__class__.__doc__ for
signature
|
|
_keep_alive(self,
obj)
|
|
clear_memo(self)
|
|
dump(self,
path,
obj)
|
|
_save(self,
path,
obj)
|
|
_save_ref(self,
path,
objpath)
|
|
_save_reduce(self,
path,
func,
args,
state=None,
listitems=None,
dictitems=None,
obj=None)
|
|
_save_none(self,
path,
obj)
|
|
_save_bool(self,
path,
obj)
|
|
_save_int(self,
path,
obj)
|
|
_save_long(self,
path,
obj)
|
|
_save_float(self,
path,
obj)
|
|
_save_complex(self,
path,
obj)
|
|
_save_string(self,
path,
obj)
|
|
_save_unicode(self,
path,
obj)
|
|
_save_tuple(self,
path,
obj)
|
|
_save_list(self,
path,
obj)
|
|
_save_dict(self,
path,
obj)
|
|
_save_dict_content(self,
path,
obj)
|
|
_save_inst(self,
path,
obj)
|
|
_save_global(self,
path,
obj,
name=None,
pack=<function pack at 0xb7d9a764>)
|
|
_save_numeric_array(self,
path,
obj)
|
|
_save_numpy_array(self,
path,
obj)
|
|
_save_numarray_array(self,
path,
obj)
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|