Python 解析配置模块之ConfigParser详解

Python 解析配置模块之ConfigParser详解

1.基本的读取配置文件

-read(filename) 直接读取ini文件内容

-sections() 得到所有的section,并以列表的形式返回

-options(section) 得到该section的所有option

-items(section) 得到该section的所有键值对

-get(section,option) 得到section中option的值,返回为string类型

-getint(section,option) 得到section中option的值,返回为int类型,还有相应的getboolean()和getfloat() 函数。

2.基本的写入配置文件

-add_section(section) 添加一个新的section

-set( section, option, value) 对section中的option进行设置,需要调用write将内容写入配置文件。

3.基本例子

test.conf

[a]
a_key1 = 20
a_key2 = 10
[b]
b_key1 = 121
b_key2 = b_value2
b_key3 = $r
b_key4 = 127.0.0.1

ConfigParser_example.py

cf = ConfigParser.ConfigParser()
cf.read("test.conf")  # 读取配置文件内容
secs = cf.sections()    # 对内容进行划分,得到所有的章节名
print 'sections:', secs     # 以列表形式打印章节名
opts = cf.options('a')
print 'options:', opts  # 以列表形式打印a章节里面的Key
kvs = cf.items('a')
print 'sec_a:', kvs     # 以列表形式打印a章节的(key, value)
str_val = cf.get('a', 'a_key1')     # 返回a章节里面key为a_key1的值,返回为string类型
int_val = cf.getint('a', 'a_key2')  # 返回_a章节里面key为a_key2的值,返回为int类型
print "value for a's a_key1:", str_val
print "value for a's a_key2:", int_val
cf.set("b", "b_key3", "new-$r")     # 章节a里面添加一个key为b_key3,值为new-$r,如果key存在就更新key的值
cf.set("b", "b_newkey", "new-value")    # 章节b里面添加一个key为b_newkey,值为new-value,key存在就更新key的值
cf.add_section('a_new_section')     # 新建一个章节a_new_section
cf.set('a_new_section', 'new_key', 'new_value')     # 章节a_new_section里面新建一个key为new_key,值为new_value
cf.write(open("test.conf", "w"))    # 把修改写入到文件test.conf中

终端输出:

sections: ['a', 'b']
options: ['a_key1', 'a_key2']
sec_a: [('a_key1', '20'), ('a_key2', '10')]
value for a's a_key1: 20
value for a's a_key2: 10

更新后的test.conf

[a]
a_key1 = 20
a_key2 = 10
[b]
b_key1 = 121
b_key2 = b_value2
b_key3 = new-$r
b_key4 = 127.0.0.1
b_newkey = new-value
[a_new_section]
new_key = new_value

4.Python的ConfigParser Module中定义了3个类对INI文件进行操作。分别是RawConfigParser、ConfigParser、SafeConfigParser。RawCnfigParser是最基础的INI文件读取类,ConfigParser、SafeConfigParser支持对%(value)s变量的解析。

设定配置文件test2.conf

[portal]
url = http://%(host)s:%(port)s/Portal
host = localhost
port = 8080

使用RawConfigParser:

import ConfigParser
cf2 = ConfigParser.RawConfigParser()
print "use RawConfigParser() read"
cf2.read("test2.conf")  # 读取配置文件内容
print cf2.get("portal", "url")  # 获得章节portal中key为url的值
print "use RawConfigParser() write"
cf2.set("portal", "url12", "%(host)s:%(port)s") # 章节portal中添加一个key为url12,值为%(host)s:%(port)s
print cf2.get("portal", "url12")    # 获得章节portal中key为url12的内容

终端输出:

use RawConfigParser() read
http://%(host)s:%(port)s/Portal
use RawConfigParser() write
%(host)s:%(port)s

改用ConfigParser:

import ConfigParser
cf3 = ConfigParser.ConfigParser()
print "use ConfigParser() read"
cf3.read("test2.conf")
print cf3.get("portal", "url")
print "use ConfigParser() write"
cf3.set("portal", "url12", "%(host)s:%(port)s")
print cf3.get("portal", "url12")

终端输出:

use ConfigParser() read
http://localhost:8080/Portal
use ConfigParser() write
localhost:8080

改用SafeConfigParser:

import ConfigParser
cf4 = ConfigParser.SafeConfigParser()
print "use SafeConfigParser() read"
cf4.read("test2.conf")
print cf4.get("portal", "url")
print "use SateConfigParser() write"
cf4.set("portal", "url2", "%(host)s:%(port)s")
print cf4.get("portal", "url2")

终端输出(效果同ConfigParser):

use SafeConfigParser() read
http://localhost:8080/Portal
use SateConfigParser() write
localhost:8080
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • Python 解析配置模块之ConfigParser详解 1.基本的读取配置文件 -read(filename) ...
    君惜丶阅读 1,554评论 0 1
  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,963评论 19 139
  • Ubuntu的发音 Ubuntu,源于非洲祖鲁人和科萨人的语言,发作 oo-boon-too 的音。了解发音是有意...
    萤火虫de梦阅读 99,584评论 9 467
  • 责任除以二等于零,在日常的管理中,管理者需要将工作责任到人,哪个工作环节出现问题,必须能找到独立负责的责任人,也就...
    肉豆须张巍阅读 142评论 0 0
  • 2017-02-19 今天很不容易啊,自己写了一份真正表达自己内心的文章并且在台上进行了演讲虽然没有脱稿但是进步还...
    一隅寻安阅读 242评论 0 0