Python使用自带的ConfigParser模块读写ini配置文件
在用Python做开发的时候经常会用到数据库或者其他需要动态配置的东西,硬编码在里面每次去改会很麻烦。Python自带有读取配置文件的模块ConfigParser,使用起来非常方便。
ini文件
ini配置文件格式:
读取配置文件:
import ConfigParser conf = ConfigParser.ConfigParser() conf.read('dbconf.ini') # 文件路径 name = conf.get("section1", "name") # 获取指定section 的option值 print name sex = conf.get("section1", "sex") # 获取section1 的sex值 print age
输出:
jhao male
写入配置文件:
import ConfigParser conf = ConfigParser.ConfigParser() conf.read('dbconf.ini') conf.set("section1", "name", "jhao104") # 修改指定section 的option conf.set("section1", "age", "21") # 增加指定section 的option conf.add_section("section3") # 增加section conf.set("section3", "site", "oschina.net") # 给新增的section 写入option conf.write(open('dbconf.ini', 'w'))
输出:
相关推荐
逍遥友 2020-11-20
olyqcool 2020-07-19
cunxinwenwu的IT 2020-05-28
JF0 2020-05-08
cyhgogogo 2020-05-03
CloudXli 2020-04-20
vshacker 2020-01-09
Cyuhong 2019-04-24
igogo00 2015-07-28
迈克揉索芙特 2008-09-07
如狼 2014-04-04
技术渣 2014-11-14
Ping 2016-11-17
youandme 2018-06-09
wqcong 2016-02-16
xiaopc 2016-04-09
Trisyp 2016-02-17
zxj0 2017-07-28
PythonGCS 2015-05-28