Python-ConfigParser常用操作示例

来源:互联网 发布:dnf辅助源码官网 编辑:程序博客网 时间:2024/06/14 04:25

configParser 模块用于操作配置文件
配置文件的格式和windows的ini文件类似,可以包含一个或者多个节(section),每个节又可以包含多个参数(键值对形式: key=value)

ConfigParser 常用方法

1、config=ConfigParser.ConfigParser()  创建ConfigParser实例  2、config.sections()  --> list返回配置文件中所有节的序列3、config.options(section)  --> list返回某个项目中的所有键的序列  4、config.get(section,option)  --> str返回section节中,option的键值  5、config.add_section(str)  添加一个配置文件节(str)  6、config.set(section,option,val)  设置section节中,键名为option的值(val)  7、config.read(filename)  读取配置文件  8、config.write(obj_file)  写入配置文件  

综合示例

#!/usr/bin/env python# -*- coding: utf-8 -*-import ConfigParserdef writeConfig(filename):    '''    写配置文件    配置文件全路径名:param filename:    '''    config = ConfigParser.ConfigParser()    section_name = "section_1"    config.add_section(section_name)    config.set(section_name, "key_1", "value_1_1")    config.set(section_name, "key_2", "value_1_2")    config.set(section_name, "key_3", "value_1_3")    section_name = "section_2"    config.add_section(section_name)    config.set(section_name, "key_1", "value_2_1")    config.set(section_name, "key_2", "value_2_2")    config.set(section_name, "key_3", "value_2_3")    config.write(open(filename, "w"))def updateConfig(filename, section, **keyv):    '''    修改配置文件    文件名:param filename:    section节:param section:    配置键值对(key=value):param keyv:    :return:    '''    config = ConfigParser.ConfigParser()    config.read(filename)    for key in keyv:        config.set(section, key, keyv[key])    config.write(open(filename, "w"))def printConfig(filename):    '''    打印配置文件信息    配置文件全路径名:param filename:    '''    config = ConfigParser.ConfigParser()    config.read(filename)    sections = config.sections()    print "sections:", sections    for section in sections:        print "[%s]" % section        for option in config.options(section):            print "\t%s=%s" % (option, config.get(section, option))if __name__ == '__main__':    file_name = 'test.ini'    writeConfig(file_name)    printConfig(file_name)    updateConfig(file_name, 'section_2', key_2='修改了')    print "修改后:"    printConfig(file_name)    print "end"

执行结果

sections: ['section_1', 'section_2'][section_1]    key_1=value_1_1    key_2=value_1_2    key_3=value_1_3[section_2]    key_1=value_2_1    key_2=value_2_2    key_3=value_2_3修改后:sections: ['section_1', 'section_2'][section_1]    key_1=value_1_1    key_2=value_1_2    key_3=value_1_3[section_2]    key_1=value_2_1    key_2=修改了    key_3=value_2_3end

test.ini文件

[section_1]key_1 = value_1_1key_2 = value_1_2key_3 = value_1_3[section_2]key_1 = value_2_1key_2 = 修改了key_3 = value_2_3
0 0
原创粉丝点击