欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

python configparser中默認(rèn)值的設(shè)定方式

 更新時(shí)間:2022年02月10日 17:04:10   作者:Believer007  
這篇文章主要介紹了python configparser中默認(rèn)值的設(shè)定方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教

configparser中默認(rèn)值的設(shè)定

在做某一個(gè)項(xiàng)目時(shí),在讀配置文件中,當(dāng)出現(xiàn)配置文件中沒(méi)有對(duì)應(yīng)項(xiàng)目時(shí),如果要設(shè)置默認(rèn)值,以前的做法是如下的:

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

但當(dāng)存在很多配置時(shí),這種寫法太糟糕

幸好,在Configparser.get()函數(shù)中有一個(gè)vars()的參數(shù),可以自定義;注:只能用ConfigParser.ConfigParser;rawconfigparser是不支持的

解決方案

1、定義函數(shù):

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

這樣就很好解決了讀取配置文件時(shí)沒(méi)有option時(shí)自動(dòng)取默認(rèn)值,而不是用rasie的方式取默認(rèn)值

此方案來(lái)之stackoverflow

使用configparser的注意事項(xiàng)

以這個(gè)非常簡(jiǎn)單的典型配置文件為例:

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

1、config parser 操作跟dict 類似,在數(shù)據(jù)存取方法基本一致

>> 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、默認(rèn)配置項(xiàng)[DEFAULT]section 的默認(rèn)參數(shù)會(huì)作用于其他Sections

3、數(shù)據(jù)類型

  • config parsers 不會(huì)猜測(cè)或自動(dòng)分析識(shí)別config.ini參數(shù)的數(shù)據(jù)類型,都會(huì)按照字符串類型存儲(chǔ),如果需要讀取為其他數(shù)據(jù)類型,需要自定義轉(zhuǎn)換。
  • 特殊bool值:對(duì)于常見(jiàn)的布爾值’yes’/‘no’, ‘on’/‘off’, ‘true’/‘false’ 和 ‘1’/‘0’,提供了getboolean()方法。

4、獲取參數(shù)值方法 get()

  • 使用get()方法獲取每一參數(shù)項(xiàng)的配置值。
  • 如果一般Sections 中參數(shù)在[DEFAULT]中也有設(shè)置,則get()到位[DEFAULT]中的參數(shù)值。

5、參數(shù)分隔符可以使用‘=’或‘:’(默認(rèn))

6、可以使用‘#’或‘;’(默認(rèn))添加備注或說(shuō)明 

[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、寫配置

常見(jiàn)做法:

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

合理做法:

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

注意要點(diǎn)

1、ConfigParser 在get 時(shí)會(huì)自動(dòng)過(guò)濾掉‘#’或‘;‘注釋的行(內(nèi)容);

  • 一般情況下我們手工會(huì)把配置中的暫時(shí)不需要的用‘#‘注釋,問(wèn)題在于,Configparser 在wirte的時(shí)候同file object行為一致,如果將注釋’#‘的配置經(jīng)過(guò)get后,再wirte到conf,那么’#‘的配置就會(huì)丟失。
  • 那么就需要一個(gè)策略或規(guī)則,配置需不需要手工編輯 ?還是建立復(fù)雜的對(duì)原生文本的處理的東西,我建議是管住手,避免將一些重要的配置爆露給用戶編輯,切記行內(nèi)注釋和Section內(nèi)注釋。
  • 有一個(gè)相對(duì)簡(jiǎn)單的方法是:
  • 對(duì)單獨(dú)在一行的代碼,你可以在讀入前把"#", ";"換成其他字符如’@’,或‘^’(在其bat等其他語(yǔ)言中用的注釋符易于理解),使用allow_no_value選項(xiàng),這樣注釋會(huì)被當(dāng)成配置保存下來(lái),處理后你再把“#”, ";"換回來(lái)。

2、在ConfigParser write之后,配置文本如果有大寫字母’PRODUCT’會(huì)變?yōu)樾懽帜?rsquo;product’,并不影響配置的正確讀寫。 

以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。

相關(guān)文章

  • 修復(fù) Django migration 時(shí)遇到的問(wèn)題解決

    修復(fù) Django migration 時(shí)遇到的問(wèn)題解決

    本篇文章主要介紹了修復(fù) Django migration 時(shí)遇到的問(wèn)題解決,小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
    2018-06-06
  • python處理emoji表情(兩個(gè)函數(shù)解決兩者之間的聯(lián)系)

    python處理emoji表情(兩個(gè)函數(shù)解決兩者之間的聯(lián)系)

    這篇文章主要介紹了python處理emoji表情,主要通過(guò)兩個(gè)函數(shù)解決兩者之間的聯(lián)系,本文通過(guò)實(shí)例代碼給大家介紹的非常完美,對(duì)python emoji表情的相關(guān)知識(shí)感興趣的朋友一起看看吧
    2021-05-05
  • 使用pyinstaller逆向.pyc文件

    使用pyinstaller逆向.pyc文件

    這篇文章主要介紹了使用pyinstaller逆向.pyc文件,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2019-12-12
  • Django單元測(cè)試工具test client使用詳解

    Django單元測(cè)試工具test client使用詳解

    這篇文章主要介紹了Django單元測(cè)試工具test client使用詳解,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
    2019-08-08
  • Python語(yǔ)言內(nèi)置數(shù)據(jù)類型

    Python語(yǔ)言內(nèi)置數(shù)據(jù)類型

    這篇文章主要介紹了Python語(yǔ)言中數(shù)據(jù)類型支持得運(yùn)算符,Python語(yǔ)言提供了豐富的內(nèi)置數(shù)據(jù)類型。用于有效的處理各種類型的數(shù)據(jù),下文將介紹到其數(shù)據(jù)類型支持的運(yùn)算符等相關(guān)內(nèi)容,需要的朋友可以參考一下
    2022-02-02
  • 使用Python統(tǒng)計(jì)代碼運(yùn)行時(shí)間的兩種方法

    使用Python統(tǒng)計(jì)代碼運(yùn)行時(shí)間的兩種方法

    有時(shí)候我們需要記錄一個(gè)程序運(yùn)行的時(shí)間,下面這篇文章主要給大家介紹了關(guān)于使用Python統(tǒng)計(jì)代碼運(yùn)行時(shí)間的兩種方法,文中通過(guò)圖文以及示例代碼介紹的非常詳細(xì),需要的朋友可以參考下
    2022-12-12
  • python數(shù)據(jù)分析之文件讀取詳解

    python數(shù)據(jù)分析之文件讀取詳解

    大家好,本篇文章主要講的是python數(shù)據(jù)分析之文件讀取詳解,感興趣的同學(xué)趕快來(lái)看一看吧,對(duì)你有幫助的話記得收藏一下,方便下次瀏覽
    2021-12-12
  • 計(jì)算Python Numpy向量之間的歐氏距離實(shí)例

    計(jì)算Python Numpy向量之間的歐氏距離實(shí)例

    這篇文章主要介紹了計(jì)算Python Numpy向量之間的歐氏距離實(shí)例,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧
    2020-05-05
  • Python讀寫Excel文件方法介紹

    Python讀寫Excel文件方法介紹

    這篇文章主要介紹了Python讀寫Excel文件方法介紹,本文講解了xlrd、xlwt、xlutils等類庫(kù)的使用,需要的朋友可以參考下
    2014-11-11
  • 如何使用PyTorch實(shí)現(xiàn)自由的數(shù)據(jù)讀取

    如何使用PyTorch實(shí)現(xiàn)自由的數(shù)據(jù)讀取

    這篇文章主要給大家介紹了關(guān)于如何使用PyTorch實(shí)現(xiàn)自由的數(shù)據(jù)讀取的相關(guān)資料,文中通過(guò)實(shí)例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
    2022-03-03

最新評(píng)論