我正在尝试使用resource_stream
frompkg_resources
与 python 3 结合使用,json.load
并且在 python 2 中不存在问题。
当我尝试运行以下命令时,出现错误:
loaded_json = json.load(resource_stream(__name__, 'path/to/foo.json'))
>> TypeError: the JSON object must be str, not 'bytes'
我正在尝试使用resource_stream
frompkg_resources
与 python 3 结合使用,json.load
并且在 python 2 中不存在问题。
当我尝试运行以下命令时,出现错误:
loaded_json = json.load(resource_stream(__name__, 'path/to/foo.json'))
>> TypeError: the JSON object must be str, not 'bytes'