I get HDF5 files of a measurement. These files are organized like [key_lvl1][key_lvl2][...]
.
The structure in the deeper levels is always the same.
However, the first key level is a simple counter for the number of measurements stored in that specific file, e.g. key_lvl1 = ["entry_1"]
, ["entry_2"]
and so on.
Now I would like to read the whole file. For this I would have to specify the string
of key_lvl1
for all the entries - with out knowing it.
How can I read a HDF with out knowing all the key_lvl1
string
s in advance?