Get HDF5 Content List (Pandas HDFStore)

I have no problem selecting content from a table in the HDF5 repository:

with pandas.HDFStore(data_store) as hdf: df_reader = hdf.select('my_table_id', chunksize=10000) 

How can I get a list of all the tables that should be selected using pandas?

+13
python pandas hdf5 hdfstore
source share
2 answers

hdf.keys() returns a (potentially unordered) list of keys corresponding to objects stored in HDFS storage ( link )

+11
source share

hdf.keys() just returns the name of the group or table, my_table_id instead of the column names.

0
source share