How to open a HDF5 file with pandas.read_hdf
when the keys are not known?
from pandas.io.pytables import read_hdf
read_hdf(path_or_buf, key)
pandas.__version__ == '0.14.1'
Here the key parameter is not known. Thanks
Or you could just do store.keys()
https://github.com/pydata/pandas/blob/master/pandas/io/pytables.py#L492
Having never worked with hdf files before I was able to use the online docs to cook an example:
So basically just loading it using
HDFStore
and passing the path and then just displaying the object will print the keys in the output.