低级别h5py h5f错误:预期字节,找到str

问题描述 投票:0回答:1

我正在尝试使用修改的缓存设置创建一个hdf5文件处理程序,如下所示:

import h5py
import contextlib

def hdf5_handler(filename, mode="r"):
    h5py.File(filename, "a").close()
    propfaid = h5py.h5p.create(h5py.h5p.FILE_ACCESS)
    settings = list(propfaid.get_cache())
    settings[1] = 0
    settings[2] = 0
    propfaid.set_cache(*settings)
    with contextlib.closing(h5py.h5f.open(filename, fapl=propfaid)) as fid:
        return h5py.File(fid, mode)

#############
hdf5 = hdf5_handler("/tmp/foo.hdf5", "a")

但它给出了以下错误:

---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-121-35fa9f73a406> in <module>()
     99         return h5py.File(fid, mode)
    100 #############
--> 101 hdf5 = hdf5_handler("/tmp/foo.hdf5", "a")

<ipython-input-121-35fa9f73a406> in hdf5_handler(filename, mode)
     96     settings[2] = 0
     97     propfaid.set_cache(*settings)
---> 98     with contextlib.closing(h5py.h5f.open(filename, fapl=propfaid)) as fid:
     99         return h5py.File(fid, mode)
    100 #############

h5py/_objects.pyx in h5py._objects.with_phil.wrapper()

h5py/_objects.pyx in h5py._objects.with_phil.wrapper()

h5py/h5f.pyx in h5py.h5f.open()

TypeError: expected bytes, str found

Python版本:3.5.5 h5py版本:'2.8.0'

我也在下面找到了类似的代码,但对我来说也没有用同样的错误:How to set cache settings while using h5py high level interface?

python hdf5 h5py low-level
1个回答
0
投票

在之前将字符串转换为字节:

hdf5 = hdf5_handler(bytes("/tmp/foo.hdf5",encoding="utf-8"), "a")
© www.soinside.com 2019 - 2024. All rights reserved.