现在越来越多的开源软件在配置文件中使用YAML格式,这个格式文件去除了引号和各种括号,看起来语法更精细。原因是YAML格式用较少的语法表达了丰富的含义。YAML是一种可读性更高的格式,用于表达数据序列化。感觉使用上是比较json比较清楚,想要求实的小伙伴可以看看下面的内容。
ruamel.yaml模块安装:
pipinstallruamel.yaml
读取YAML文件:
通过代码演示读取yaml文件
fromruamel.yamlimportYAML yaml=YAML(typ='safe') withopen(r'g:\book\code\10\10.1.yml',encoding="utf-8")asfile: data=yaml.load(file) print(data)
输出结果:
{'name':'张三','age':22,'sex':'男','interest':{'兴趣1':'爬山','兴趣2':'音乐'},'skill':[{'语言':'JAVA','时间':'2年'},{'语言':'Python','时间':'2年'}],'exam':[{'subject':'英语4级','score':50},{'subject':'高级程序员','score':50}]}
写入YAML文件:
fromruamel.yamlimportYAML yaml=YAML() data={'name':'李四','age':22,'sex':'男', 'interest':{'兴趣1':'爬山','兴趣2':'音乐'}, 'skill':[{'语言':'Python','时间':'2年'}], 'exam':[{'subject':'高级程序员','score':50}] } withopen(r'g:\book\code\10\10.2.yaml',mode='w',encoding="utf-8")asfile: yaml.dump(data,file)
输出结果:
现在大家都能感受到YAML格式明显比JSON更清晰。可以亲自写代码,加深记忆~