Python-ConfigParser获取配置项名称大小写问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python-ConfigParser获取配置项名称大小写问题相关的知识,希望对你有一定的参考价值。
C:\Python27\Lib\ConfigParser.py:
def optionxform(self, optionstr):
return optionstr.lower()
会将配置文件中的选项名改为小写
为了保持配置项名称的大小写格式,重写:
class myconf(ConfigParser.ConfigParser):
def __init__(self, defaults=None):
ConfigParser.ConfigParser.__init__(self, defaults=defaults)
# 这里重写了optionxform方法,直接返回选项名
def optionxform(self, optionstr):
return optionstr
使用:
# 获取test.cfg
def get_config(self, cfg_file):
cfg_dict = {}
config = myconf()
config.read(cfg_file)
for sec in config.sections():
cfg_dict[sec] = {}
for op in config.items(sec):
cfg_dict[sec][op[0]] = op[1]
return cfg_dict
以上是关于Python-ConfigParser获取配置项名称大小写问题的主要内容,如果未能解决你的问题,请参考以下文章