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?
python pandas hdf5 hdfstore
bcollins
source share