python configparser中默认值的设定方式
程序员文章站
2022-06-09 18:23:28
目录configparser中默认值的设定解决方案使用configparser的注意事项注意要点configparser中默认值的设定在做某一个项目时,在读配置文件中,当出现配置文件中没有对应项目时,...
configparser中默认值的设定
在做某一个项目时,在读配置文件中,当出现配置文件中没有对应项目时,如果要设置默认值,以前的做法是如下的:
try: apple = config.get(section, 'apple') except nosectionerror, nooptionerror: apple = none
但当存在很多配置时,这种写法太糟糕
幸好,在configparser.get()函数中有一个vars()的参数,可以自定义;注:只能用configparser.configparser;rawconfigparser是不支持的
解决方案
1、定义函数:
class defaultoption(dict): def __init__(self, config, section, **kv): self._config = config self._section = section dict.__init__(self, **kv) def items(self): _items = [] for option in self: if not self._config.has_option(self._section, option): _items.append((option, self[option])) else: value_in_config = self._config.get(self._section, option) _items.append((option, value_in_config)) return _items
2、使用
def read_config(section, location): config = configparser.configparser() config.read(location) apple = config.get(section, 'apple', vars=defaultoption(config, section, apple=none)) pear = config.get(section, 'pear', vars=defaultoption(config, section, pear=none)) banana = config.get(section, 'banana', vars=defaultoption(config, section, banana=none)) return apple, pear, banana
这样就很好解决了读取配置文件时没有option时自动取默认值,而不是用rasie的方式取默认值
此方案来之*
使用configparser的注意事项
以这个非常简单的典型配置文件为例:
[default] serveraliveinterval = 45 compression = yes compressionlevel = 9 forwardx11 = yes [bitbucket.org] user = hg [topsecret.server.com] port = 50022 forwardx11 = no
1、config parser 操作跟dict 类似,在数据存取方法基本一致
>> import configparser >>> config = configparser.configparser() >>> config.sections() [] >>> config.read('example.ini') ['example.ini'] >>> config.sections() ['bitbucket.org', 'topsecret.server.com'] >>> 'bitbucket.org' in config true >>> 'bytebong.com' in config false >>> config['bitbucket.org']['user'] 'hg' >>> config['default']['compression'] 'yes' >>> topsecret = config['topsecret.server.com'] >>> topsecret['forwardx11'] 'no' >>> topsecret['port'] '50022' >>> for key in config['bitbucket.org']: print(key) ... user compressionlevel serveraliveinterval compression forwardx11 >>> config['bitbucket.org']['forwardx11'] 'yes'
2、默认配置项[default]section 的默认参数会作用于其他sections
3、数据类型
- config parsers 不会猜测或自动分析识别config.ini参数的数据类型,都会按照字符串类型存储,如果需要读取为其他数据类型,需要自定义转换。
- 特殊bool值:对于常见的布尔值’yes’/‘no’, ‘on’/‘off’, ‘true’/‘false’ 和 ‘1’/‘0’,提供了getboolean()方法。
4、获取参数值方法 get()
- 使用get()方法获取每一参数项的配置值。
- 如果一般sections 中参数在[default]中也有设置,则get()到位[default]中的参数值。
5、参数分隔符可以使用‘=’或‘:’(默认)
6、可以使用‘#’或‘;’(默认)添加备注或说明
[simple values] key=value spaces in keys=allowed spaces in values=allowed as well spaces around the delimiter = obviously you can also use : to delimit keys from values [all values are strings] values like this: 1000000 or this: 3.14159265359 are they treated as numbers? : no integers, floats and booleans are held as: strings can use the api to get converted values directly: true [multiline values] chorus: i'm a lumberjack, and i'm okay i sleep all night and i work all day [no values] key_without_value empty string value here = [you can use comments] # like this ; or this # by default only in an empty line. # inline comments can be harmful because they prevent users # from using the delimiting characters as parts of values. # that being said, this can be customized. [sections can be indented] can_values_be_as_well = true does_that_mean_anything_special = false purpose = formatting for readability multiline_values = are handled just fine as long as they are indented deeper than the first line of a value # did i mention we can indent comments, too?
7、写配置
常见做法:
config.write(open('example.ini', 'w'))
合理做法:
with open('example.ini', 'w') as configfile: config.write(configfile)
注意要点
1、configparser 在get 时会自动过滤掉‘#’或‘;‘注释的行(内容);
- 一般情况下我们手工会把配置中的暂时不需要的用‘#‘注释,问题在于,configparser 在wirte的时候同file object行为一致,如果将注释’#‘的配置经过get后,再wirte到conf,那么’#‘的配置就会丢失。
- 那么就需要一个策略或规则,配置需不需要手工编辑 ?还是建立复杂的对原生文本的处理的东西,我建议是管住手,避免将一些重要的配置爆露给用户编辑,切记行内注释和section内注释。
- 有一个相对简单的方法是:
- 对单独在一行的代码,你可以在读入前把"#", ";"换成其他字符如’@’,或‘^’(在其bat等其他语言中用的注释符易于理解),使用allow_no_value选项,这样注释会被当成配置保存下来,处理后你再把“#”, ";"换回来。
2、在configparser write之后,配置文本如果有大写字母’product’会变为小写字母’product’,并不影响配置的正确读写。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。
上一篇: 关于yii2 Csrf验证问题
下一篇: 详解C#异步多线程使用中的常见问题