我在将 YAML 文件中的文档映射到 dict 并正确映射它们时遇到以下问题.
I am having the following problem of mapping documents within a YAML file to a dict and properly mapping them.
我有以下 YAML 文件,它代表一个服务器 (db.yml):
I have the following YAML file, which represents a server (db.yml):
instanceId: i-aaaaaaaa
environment:us-east
serverId:someServer
awsHostname:ip-someip
serverName:somewebsite.com
ipAddr:192.168.0.1
roles:[webserver,php]
我加载了这个 YAML 文件,我可以毫无问题地这样做,我想我明白了.
I load this YAML file, which I can do without any problems, I think I understand that.
instanceId = getInstanceId()
stream = file('db.yml', 'r')
dict = yaml.load_all(stream)
for key in dict:
if key in dict == "instanceId":
print key, dict[key]
我希望逻辑如下所示:
instanceId 与 getInstanceId() 设置的匹配,则打印出该文档的所有键和值.instanceId matches that which was set by getInstanceId(), then print out all of the keys and values for that document.如果我从命令行查看地图数据结构,我会得到:
If I look at the map data structure from the command line, I get:
{'instanceId': 'i-aaaaaaaa environment:us-east serverId:someServer awsHostname:ip-someip serverName:someserver ipAddr:192.168.0.1 roles:[webserver,php]'}
我想我可能不正确地为 YAML 文件创建数据结构,并且在匹配 dict 上的内容时,我有点迷失了.
I think I might be creating the data structure for the YAML file improperly, and on matching the contents on the dict, I am a bit lost.
旁注:我无法使用 yaml.load() 加载此文件中的所有文档,我尝试了 yaml.load_all(),这似乎可行,但我的主要问题仍然存在.
Side note: I cannot load all of the documents in this file using yaml.load(), I tried yaml.load_all(), which seems to work but my main issue still exists.
我认为你的 yaml 文件应该看起来像(或者至少是类似的,所以它的结构是正确的):
I think your yaml file should look like (or at least something like, so it's structured correctly anyway):
instance:
Id: i-aaaaaaaa
environment: us-east
serverId: someServer
awsHostname: ip-someip
serverName: somewebsite.com
ipAddr: 192.168.0.1
roles: [webserver,php]
然后,yaml.load(...) 返回:
{'instance': {'environment': 'us-east', 'roles': ['webserver', 'php'], 'awsHostname': 'ip-someip', 'serverName': 'somewebsite.com', 'ipAddr': '192.168.0.1', 'serverId': 'someServer', 'Id': 'i-aaaaaaaa'}}
你可以从那里去......
And you can go from there...
所以像这样使用:
>>> for key, value in yaml.load(open('test.txt'))['instance'].iteritems():
print key, value
environment us-east
roles ['webserver', 'php']
awsHostname ip-someip
serverName somewebsite.com
ipAddr 192.168.0.1
serverId someServer
Id i-aaaaaaaa
这篇关于将 YAML 文件转换为 python dict的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
python:不同包下同名的两个模块和类python: Two modules and classes with the same name under different packages(python:不同包下同名的两个模块和类)
配置 Python 以使用站点包的其他位置Configuring Python to use additional locations for site-packages(配置 Python 以使用站点包的其他位置)
如何在不重复导入顶级名称的情况下构造python包How to structure python packages without repeating top level name for import(如何在不重复导入顶级名称的情况下构造python包)
在 OpenShift 上安装 python 包Install python packages on OpenShift(在 OpenShift 上安装 python 包)
如何刷新 sys.path?How to refresh sys.path?(如何刷新 sys.path?)
分发带有已编译动态共享库的 Python 包Distribute a Python package with a compiled dynamic shared library(分发带有已编译动态共享库的 Python 包)