在python3中使用h5py发现密钥

时间:2015-06-24 21:09:42

标签: python-2.7 python-3.4 hdf5

python2.7中,我可以分析hdf5个文件密钥使用

$ python
>>> import h5py
>>> f = h5py.File('example.h5', 'r')
>>> f.keys()
[u'some_key']

然而,在python3.4中,我得到了不同的东西:

$ python3 -q
>>> import h5py
>>> f = h5py.File('example.h5', 'r')
>>> f.keys()
KeysViewWithLock(<HDF5 file "example.h5" (mode r)>)

什么是KeysViewWithLock,如何在Python3中检查我的HDF5密钥?

1 个答案:

答案 0 :(得分:34)

来自h5py的网站(http://docs.h5py.org/en/latest/high/group.html#dict-interface-and-links):

  

使用Python 3中的h5py时,键(),值()和项目()   方法将返回类似视图的对象而不是列表。这些对象   支持容器测试和迭代,但不能像切片一样   列表。

这解释了为什么我们无法查看它们。最简单的答案是将它们转换为列表:

>>> list(for.keys())

不幸的是,我在iPython中运行,它使用命令&#39; l&#39;。这意味着这种方法不会起作用。

为了实际查看它们,我们需要利用容器测试和迭代。货柜船测试意味着我们必须已经知道钥匙,因此这样做了。幸运的是,使用迭代很简单:

>>> [key for key in f.keys()]
['mins', 'rects_x', 'rects_y']

我已经创建了一个自动执行此操作的简单功能:

def keys(f):
    return [key for key in f.keys()]

然后你得到:

>>> keys(f)
['mins', 'rects_x', 'rects_y']