在Python中加载Yaml文件而不转换为dict

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

我需要将yaml文件的内容原样存储到变量中(不转换为字典),或者在将其存储为字典后,有任何方法可以恢复为yaml格式而不将其存储在文件中。我尝试使用yaml.load(file)返回字典中的对象。有没有办法实现?

python yaml prometheus etcd
1个回答
2
投票

关于什么?

ymlFile = open('file.yml').read()

https://www.pythonforbeginners.com/files/reading-and-writing-files-in-python

© www.soinside.com 2019 - 2024. All rights reserved.