gpt4 book ai didi

python - 将 yaml 文件保存到生成器对象到字典 python

转载 作者:行者123 更新时间:2023-12-01 00:12:58 29 4
gpt4 key购买 nike

我在将 YAML 文件保存到 python 字典时遇到很多问题。我将在下面显示我采取的两条路线,均不是最佳路线。

Yaml 文件:

modules:
module_1: True
module_2: True
module_3: False
scenarios:
constant:
start_date: "2018-09-30"
end_date: "2019-09-30"
adverse:
start_date: "2019-09-30"
end_date: "2022-09-30"

路线1:将YAML文件直接保存到字典中,而不指定现在已弃用的加载器

import yaml
filepath = "C:\\user\\path\\file.yaml"
_dict = yaml.load(open(filepath))
print(type(_dict))
>>> <class 'dict'>

error message: Calling yaml.load() without loader=... is depreciated, as it is unsafe

路线2:作为生成器加载(不可订阅)

import yaml
filepath = "C:\\user\\path\\file.yaml"
document = open(filepath, "r")
dictionary = yaml.safe_load_all(document)

print(type(dictionary)
>>> <generator object>

print(dictionary["modules"]["module_1"]
>>> generator object is not subscriptable

有没有办法可以将我的 yaml 文件安全地导入到字典中?我希望在我的 python 项目中使用字典而不是创建全局变量等。

示例:

if _dict["modules"]["module_1"]:
# Do something

最佳答案

只有在没有加载程序的情况下调用才被废弃。您始终可以将 SafeLoader 传递给加载函数。

import yaml

with open(filepath, 'r') as stream:
dictionary = yaml.load(stream, Loader=yaml.SafeLoader)

这应该返回你的字典。

编辑:

而对于yaml.safe_load_all,只需要调用generator.__next__()即可获取字典。

import yaml
filepath = "C:\\user\\path\\file.yaml"
document = open(filepath, "r")
generator = yaml.safe_load_all(document)
dictionary = generator.__next__()

我建议您使用第一个选项。

关于python - 将 yaml 文件保存到生成器对象到字典 python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59502752/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com