请参阅其他问题:python 中的属性文件(类似于 Java 属性)
自动设置全局变量对我来说不是一个好主意。我更喜欢全局ConfigParser
对象或字典。如果您的配置文件类似于 Windows.ini
文件,那么您可以读取它并设置一些全局变量,例如:
def read_conf():
global QManager
import ConfigParser
conf = ConfigParser.ConfigParser()
conf.read('my.conf')
QManager = conf.get('QM', 'QManager')
print('Conf option QManager: [%s]' % (QManager))
(这假设您的配置文件[QM]
中有部分)my.conf
如果您想在没有ConfigParser
类似模块或类似模块帮助的情况下解析配置文件,请尝试:
my_options = {}
f = open('my.conf')
for line in f:
if '=' in line:
k, v = line.split('=', 1)
k = k.strip()
v = v.strip()
print('debug [%s]:[%s]' % (k, v))
my_options[k] = v
f.close()
print('-' * 20)
# this will show just read value
print('Option QManager: [%s]' % (my_options['QManager']))
# this will fail with KeyError exception
# you must be aware of non-existing values or values
# where case differs
print('Option qmanager: [%s]' % (my_options['qmanager']))