HdfStore#

class activitysim.core.workflow.checkpoint.HdfStore(filename: Path, mode='a')#

Storage interface for HDF5-based table storage.

Methods

__init__(filename[, mode])

close()

Close this store.

from_hdf(source_filename, dest_filename[, mode])

Create a new checkpoint store from an existing HdfStore.

get_dataframe(table_name[, checkpoint_name])

Load table from store as a pandas DataFrame.

list_checkpoint_names()

Get a list of all checkpoint names in this store.

put(table_name, df[, complib, checkpoint_name])

Store a table.

Attributes

filename

Location of this store.

is_open

This store is open.

is_readonly

This store is read-only.