码迷,mamicode.com
首页 > 编程语言 > 详细

python 读取配置文件的值

时间:2015-03-16 13:02:21      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:python   配置文件   解析   

上例子:

假设配置文件如下,文件名为test.cfg

#------------------------------------

#abcdefg

abc = 1

#-----------------------------------------

其中的#号后面的部分都是注释


读入该文件的python代码为:

from types import ModuleType
import re
cfg = []
fcfg = "D:/test.cfg"
content = {}
try:
	execfile(fcfg, context)
except Exception,e:
	......

for k,v in  content:
	if re.serch('^_',k) == None and not type(v) is ModuleType:
		cfg[k] = v

这样就完成解析

使用方法为: cfg[‘abc‘]

python 读取配置文件的值

标签:python   配置文件   解析   

原文地址:http://blog.csdn.net/u010640235/article/details/44302591

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!