文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

python configparser中的默认值怎么设定

2023-06-29 03:13

关注

本文小编为大家详细介绍“python configparser中的默认值怎么设定”,内容详细,步骤清晰,细节处理妥当,希望这篇“python configparser中的默认值怎么设定”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢深入,一起来学习新知识吧。

configparser中默认值的设定

在做某一个项目时,在读配置文件中,当出现配置文件中没有对应项目时,如果要设置默认值,以前的做法是如下的:

try:    apple = config.get(section, 'apple')except NoSectionError, NoOptionError:    apple = None

但当存在很多配置时,这种写法太糟糕

幸好,在Configparser.get()函数中有一个vars()的参数,可以自定义;注:只能用ConfigParser.ConfigParser;rawconfigparser是不支持的

解决方案

定义函数:

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

使用

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的方式取默认值

此方案来之stackoverflow

使用configparser的注意事项

以这个非常简单的典型配置文件为例:

[DEFAULT]ServerAliveInterval = 45Compression = yesCompressionLevel = 9ForwardX11 = yes[bitbucket.org]User = hg[topsecret.server.com]Port = 50022ForwardX11 = no

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 configTrue>>> 'bytebong.com' in configFalse>>> 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)...usercompressionlevelserveraliveintervalcompressionforwardx11>>> config['bitbucket.org']['ForwardX11']'yes'

默认配置项[DEFAULT]section 的默认参数会作用于其他Sections

数据类型

获取参数值方法 get()

参数分隔符可以使用‘=’或‘:’(默认)

可以使用‘#’或‘;’(默认)添加备注或说明 

[Simple Values]key=valuespaces in keys=allowedspaces in values=allowed as wellspaces around the delimiter = obviouslyyou can also use : to delimit keys from values[All Values Are Strings]values like this: 1000000or this: 3.14159265359are they treated as numbers? : nointegers, floats and booleans are held as: stringscan 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_valueempty 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?

写配置

常见做法:

config.write(open('example.ini', 'w'))

合理做法:

with open('example.ini', 'w') as configfile:    config.write(configfile)

注意要点

ConfigParser 在get 时会自动过滤掉‘#’或‘;‘注释的行(内容);

在ConfigParser write之后,配置文本如果有大写字母PRODUCT,会变为小写字母product,并不影响配置的正确读写。 

读到这里,这篇“python configparser中的默认值怎么设定”文章已经介绍完毕,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯