Python配置工具类ConfigParser使用
一,函数介绍
1.读取配置文件
')]
#写配置文件
#增加新的section
cu.config.add_section('src_mysql')
#写入指定section增加新option和值
cu.config.set("src_mysql", "passwd", "new-value")
cu.config.set("src_mysql", "charset", "new_value")
cu.config.set("src_mysql", "db", "new-value")
cu.config.set("src_mysql", "port", "new_value")
cu.config.set("src_mysql", "host", "new_value")
cu.config.set("src_mysql", "user", "new_value")
cu.config.set("src_mysql", "connect_timeout", "new_value")
#写回配置文件
cu.config.write(open("test.cfg", "w"))