python_配置文件_yaml
一.
配置文件:
定义:对项目进行配置管理。
一般用来对可变参数进行配置(如:环境地址)
1.安装
pip install pyyaml
国内安装源:
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyyaml
2.使用
注意:
字典的表示方法(“log”:"test"),列表的表示方法(- list) ,字符串可以用空格("log": test);
yaml文件中缩进必须用空格进行;
1)读取数据
yaml 文件内容:
#读取数据with open(‘conf.yaml‘,encoding=‘utf-8‘) as f: conf=yaml.load(f,Loader=yaml.SafeLoader) print(conf)运行结果:
2)写入数据
# 写入yamlwith open("new.yaml", ‘w‘, encoding=‘utf8‘) as f: yaml.dump({"new_yaml": "write"}, f)运行结果:
相关推荐
边城客栈学无止境 2020-07-05
awoyaoc 2020-06-07
mary 2020-05-28
ShiShuo 2020-05-16
OyangYujun 2020-04-10
kjh00abc 2020-03-08
sschencn 2020-02-23
akcsdno 2020-02-18
技术积累LZ 2020-02-14
SDUTACM 2020-01-18
jacktangj 2020-01-09
技术积累LZ 2020-01-08
limx 2019-12-18
kjh00abc 2019-12-15
Cherishyuu 2019-12-11
kjh00abc 2019-12-09