-1

After I load an h5 files and then check the keys, is there any other data that can be stored in the h5 that I might be missing? For example:

import h5py
a = '/path/to/file.h5'
a_h5 = h5py.File(a)
a_h5.keys()
Nolohice
  • 339
  • 4
  • 15

1 Answers1

0

From the h5py documentation, it looks like you can also do:

a_h5.values()
a_h5.items()

I don't know much about this format, but this looks like additional information you can extract.

Jenner Felton
  • 787
  • 1
  • 9
  • 18