python ConfigParser 模块
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python ConfigParser 模块相关的知识,希望对你有一定的参考价值。
工作中的一个小脚本
目的:用于修改配置文件setting.ini,新增一个新的配置项
import ConfigParser cf = ConfigParser.ConfigParser() filepath = ‘setting.ini‘ cf.read(filepath) for i in cf.sections(): cf.set(i,‘user‘, ‘test‘) with open(filepath, ‘wb‘) as configfile: cf.write(configfile)
本文出自 “运维小白” 博客,请务必保留此出处http://hironepiece.blog.51cto.com/12501442/1891023
以上是关于python ConfigParser 模块的主要内容,如果未能解决你的问题,请参考以下文章
python封装configparser模块获取conf.ini值(优化版)