在python代码中,借助ConfigParser模块读取配置文件。
1,versioncontrol配置文件
复制代码 代码示例:
...
[Setting]
closeToMinSize=0
updateType=Notify
autoConn=1
savePath=C:UsersliaozhenhuaDocuments搜狗手机助手Download
imageSavePath=
apk=1
AutoCheckRelation=1
AutoRelation=1
installToSD=1
installLocalApkPath=
SMTU
sedNum=135
widgetSwitch=1
例子,读取配置文件。
复制代码 代码示例:
cf = ConfigParser.ConfigParser()
cf.read("配置文件名")
type=cf.get("Setting","updateType")
一、ConfigParser简介
ConfigParser 是用来读取配置文件的包。配置文件的格式如下:中括号“[ ]”内包含的为section。
section 下面为类似于key-value 的配置内容。
复制代码 代码示例:
[db]
db_host = 127.0.0.1
db_port = 22
db_user = root
db_pass = rootroot
[concurrent]
thread = 10
processor = 20
中括号“[ ]”内包含的为section。紧接着section 为类似于key-value 的options 的配置内容。
二、ConfigParser 初始工作
使用ConfigParser 首选需要初始化实例,并读取配置文件:
复制代码 代码示例:
cf = ConfigParser.ConfigParser()
cf.read("配置文件名")
三、ConfigParser 常用方法
1. 获取所有sections。也就是将配置文件中所有“[ ]”读取到列表中:
复制代码 代码示例:
s = cf.sections()
print 'section:', s
将输出(以下将均以简介中配置文件为例):
section: ['db', 'concurrent']
2. 获取指定section 的options。即将配置文件某个section 内key 读取到列表中:
复制代码 代码示例:
o = cf.options("db")
print 'options:', o
将输出:
options: ['db_host', 'db_port', 'db_user', 'db_pass']
3. 获取指定section 的配置信息。
复制代码 代码示例:
v = cf.items("db")
print 'db:', v
将输出:
db: [('db_host', '127.0.0.1'), ('db_port', '22'), ('db_user', 'root'), ('db_pass', 'rootroot')]
4. 按照类型读取指定section 的option 信息。
同样的还有getfloat、getboolean。
复制代码 代码示例:
#可以按照类型读取出来
db_host = cf.get("db", "db_host")
db_port = cf.getint("db", "db_port")
db_user = cf.get("db", "db_user")
db_pass = cf.get("db", "db_pass")
# 返回的是整型的
threads = cf.getint("concurrent", "thread")
processors = cf.getint("concurrent", "processor")
print "db_host:", db_host
print "db_port:", db_port
print "db_user:", db_user
print "db_pass:", db_pass
print "thread:", threads
print "processor:", processors
将输出:
db_host: 127.0.0.1
db_port: 22
db_user: root
db_pass: rootroot
thread: 10
processor: 20
5. 设置某个option 的值。(记得最后要写回)
复制代码 代码示例:
cf.set("db", "db_pass", "zhaowei")
cf.write(open("test.conf", "w"))
6.添加一个section。(同样要写回)
复制代码 代码示例:
cf.add_section('liuqing')
cf.set('liuqing', 'int', '15')
cf.set('liuqing', 'bool', 'true')
cf.set('liuqing', 'float', '3.1415')
cf.set('liuqing', 'baz', 'fun')
cf.set('liuqing', 'bar', 'Python')
cf.set('liuqing', 'foo', '%(bar)s is %(baz)s!')
cf.write(open("test.conf", "w"))
7. 移除section 或者option 。(只要进行了修改就要写回的哦)
复制代码 代码示例:
cf.remove_option('liuqing','int')
cf.remove_section('liuqing')
cf.write(open("test.conf", "w"))
例子:
复制代码 代码示例:
#!/usr/bin/env python
#
from ConfigParser import ConfigParser
CONFIGFILE="f.txt"
config=ConfigParser()
config.read(CONFIGFILE)
print config.get('messages','greeting')
radius=input(config.get('messages','questions')+' ')
print config.get('messages','result')
print config.getfloat('numbers','pi')*radius**2
s=config.sections()
print'section: ',s
o=config.options('messages')
print'messages option: ',o
v=config.items("messages")
print'message de xinxi: ',v
config.add_section('liuyang1')
config.set('liuyang1','int','15')
config.set('liuyang'1,'hhhh','hello world')
config.write(open("f.txt","w"))
print config.get('liuyang1','int')
print config.get('liuyang1','hhhh')
以下分享几个python ConfigParser模块读写配置文件的例子。
1、配置文件test.cfg
复制代码 代码示例:
[sec_a]
a_key1 = 20
a_key2 = 10
[sec_b]
b_key1 = 121
b_key2 = b_value2
b_key3 = $r
b_key4 = 127.0.0.1
2、测试文件test.py
复制代码 代码示例:
# -* - coding: UTF-8 -* -
import ConfigParser
#生成config对象
conf = ConfigParser.ConfigParser()
#用config对象读取配置文件
conf.read("test.cfg")
#以列表形式返回所有的section
sections = conf.sections()
print 'sections:', sections #sections: ['sec_b', 'sec_a']
#得到指定section的所有option
options = conf.options("sec_a")
print 'options:', options #options: ['a_key1', 'a_key2']
#得到指定section的所有键值对
kvs = conf.items("sec_a")
print 'sec_a:', kvs #sec_a: [('a_key1', '20'), ('a_key2', '10')]
#指定section,option读取值
str_val = conf.get("sec_a", "a_key1")
int_val = conf.getint("sec_a", "a_key2")
print "value for sec_a's a_key1:", str_val #value for sec_a's a_key1: 20
print "value for sec_a's a_key2:", int_val #value for sec_a's a_key2: 10
#写配置文件
#更新指定section,option的值
conf.set("sec_b", "b_key3", "new-$r")
#写入指定section增加新option和值
conf.set("sec_b", "b_newkey", "new-value")
#增加新的section
conf.add_section('a_new_section')
conf.set('a_new_section', 'new_key', 'new_value')
#写回配置文件
conf.write(open("test.cfg", "w"))
第二个例子,
1、配置文件test.cfg
复制代码 代码示例:
[info]
age = 21
name = chen
sex = male
2、测试文件test.py
复制代码 代码示例:
#!/usr/bin/env python
#
from __future__ import with_statement
import ConfigParser
config=ConfigParser.ConfigParser()
with open("test.cfg","rw") as cfgfile:
config.readfp(cfgfile)
name=config.get("info","name")
age=config.get("info","age")
print name
print age
config.set("info","sex","male")
config.set("info","age","55")
age=config.getint("info","age")
print name
print type(age)
print age
第三部分,
Python的ConfigParser Module中定义了3个类对INI文件进行操作。
分别是RawConfigParser、ConfigParser、SafeConfigParser。
RawCnfigParser是最基础的INI文件读取类,ConfigParser、SafeConfigParser支持对%(value)s变量的解析。
1、配置文件test.cfg
复制代码 代码示例:
[portal]
url = http://%(host)s:%(port)s/Portal
host = localhost
port = 8080
2、使用RawConfigParser:
复制代码 代码示例:
import ConfigParser
conf = ConfigParser.RawConfigParser()
print "use RawConfigParser() read"
conf.read("test.cfg")
print conf.get("portal", "url")
print "use RawConfigParser() write"
conf.set("portal", "url2", "%(host)s:%(port)s")
print conf.get("portal", "url2")
输出:
use RawConfigParser() read
http://%(host)s:%(port)s/Portal
use RawConfigParser() write
%(host)s:%(port)s
3、改用ConfigParser
复制代码 代码示例:
import ConfigParser
conf = ConfigParser.ConfigParser()
print "use RawConfigParser() read"
conf.read("test.cfg")
print conf.get("portal", "url")
print "use RawConfigParser() write"
conf.set("portal", "url2", "%(host)s:%(port)s")
print conf.get("portal", "url2")
输出:
use RawConfigParser() read
http://localhost:8080/Portal
use RawConfigParser() write
localhost:8080
改用SafeConfigParser,效果与ConfigParser相同。
代码:
复制代码 代码示例:
#!/usr/bin/env python
#
import ConfigParser
conf = ConfigParser.SafeConfigParser()
print "use RawConfigParser() read"
conf.read("test.cfg")
print conf.get("portal", "url")
print "use RawConfigParser() write"
conf.set("portal", "url2", "%(host)s:%(port)s")
print conf.get("portal", "url2")
结论:还是用ConfigParser模块。