使用python访问h5文件中包含的所有数据

时间:2016-05-23 20:05:13

标签: python h5py

在我加载h5文件然后检查密钥后,是否还有其他可以存储在h5中的数据我可能会丢失?例如:

import h5py
a = '/path/to/file.h5'
a_h5 = h5py.File(a)
a_h5.keys()

1 个答案:

答案 0 :(得分:0)

h5py documentation开始,您似乎也可以这样做:

a_h5.values()
a_h5.items()

我对这种格式不太了解,但这看起来像是您可以提取的其他信息。