在程序开发中,使用独立的配置文件来配置一些参数常见且方便,配置文件的解析或修改并不复杂,在python里更是如此,在官方发布的库中就包含有做这件事情的库,那就是ConfigParser,ConfigParser模块解析的配置文件的格式类似ini的配置文件格式,就是文件由多个section构成,每个section下又有多个配置项.
下面就以一个具体的脚本实例,来说明这个模块的使用方法:
脚本文件名:chconfig.py
#!/usr/bin/python
# -*- coding:gbk -*-
# Author: Droeny.zhao
# Version: 2010-04-08
import sys
import ConfigParser
def getinfo(COLUMN,ITEM):
conf=ConfigParser.ConfigParser()
CONFIGNAME = 'game.ini'
if os.path.isfile(CONFIGNAME):
conf.read(CONFIGNAME)
conf.sections()
try:
return conf.get(COLUMN,ITEM)
except ConfigParser.NoOptionError, e:
print 'Wanning:',e
sys.exit()
else:
print 'Wanning: "%s" is not exists, you must appoint the absolute path of config file with -p or -c.'%(CONFIGNAME)
sys.exit()
def setinfo(COLUMN,ITEM,VALUE):
conf=ConfigParser.ConfigParser()
CONFIGNAME = 'game.ini'
if os.path.isfile(CONFIGNAME):
conf.read(CONFIGNAME)
conf.sections()
try:
conf.set(COLUMN,ITEM,VALUE)
conf.write(open(CONFIGNAME, 'w'))
except ConfigParser.NoOptionError, e:
print 'Wanning:',e
sys.exit()
else:
print 'Wanning: "%s" is not exists, you must appoint the absolute path of config file with -p or -c.'%(CONFIGNAME)
sys.exit()
if __name__ == '__main__':
print getinfo('Account','DBName')
setinfo('Account','DBName','GameDB')
print getinfo('Account','DBName')
配置文件:game.ini
[Account]
username = test01
servername = 192.168.0.1
password = 123456
dbname = AccountDB
[Database]
username = test02
servername = 192.168.0.2
password = 123456
dbname = GameDB
您可能感兴趣的文章:
Python ConfigParser模块常用方法的实例详解
python模块ConfigParser解析配置文件
Python使用ConfigParser模块处理配置文件
Python使用ConfigParser读取配置文件的又一个例子
Python ConfigParser读取ini配置文件的例子
python ConfigParser读取配置文件的例子
Python模块 ConfigParser 读取配置文件
使用python模块ConfigParser解析配置文件