国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

python模塊之configparser

荊兆峰 / 2071人閱讀

摘要:由于這種需求非常普遍,配置解析器提供了一系列更簡便的方法來處理整數浮點數及布爾值。注意點方法對大小寫不敏感,能識別和為對應的布爾值后備值和字典一樣,可以使用的方法提供后備值需要注意的是,默認值的優先級高于后備值。

快速開始
# demo.ini

[DEFAULT]
ServerAliveInterval = 45
Compression = yes
CompressionLevel = 9
ForwardX11 = yes

[bitbucket.org]
User = hg

[topsecret.server.com]
Port = 50022
ForwardX11 = no

上面的demo.ini是一個非?;A的配置文件,它由多個部分(section)組成,每部分包含了帶值的選項。ConfigParse類的實例可以對其進行讀寫操作。

創建配置文件:

import configparser

config = configparser.ConfigParser()
config["DEFAULT"] = {"ServerAliveInterval": "45",
                     "Compression": "yes",
                     "CompressionLevel": "9",
                     "ForwardX11": "yes"}

config["bitbucket.org"] = {}
config["bitbucket.org"]["User"] = "hg"

config["topsecret.server.com"] = {}
topsecret = config["topsecret.server.com"]
topsecret["Port"] = "50022"
topsecret["ForwardX11"] = "no"

with open("demo.ini", "w") as configfile:
    config.write(configfile)

對配置解析器的處理與字典類似。

讀取配置文件:

>>> config = configparser.ConfigParser()
>>> config.sections()
[]
>>> config.read("demo.ini")
["demo.ini"]
>>> config.sections()
["bitbucket.org", "topsecret.server.com"]
>>> "bitbucket.org" in config
True
>>> "bitbong.com" in config
False
>>> config["bitbucket.org"]["User"]
"hg"
>>> config["DEFAULT"]["Compression"]
"yes"
>>> topsecret = config["topsecret.server.com"]
>>> topsecret["ForwardX11"]
"no"
>>> for key in config["bitbucket.org"]:
...     print(key)
user
serveraliveinterval
compression
compressionlevel
forwardx11
>>> config["bitbucket.org"]["ForwardX11"]
"yes"

注意點:[DEFAULT]為其他所有section提供默認值,section中的所有鍵大小寫不敏感并以小寫字母存儲

支持的數據類型

配置解析器總是存儲配置的值為字符串類型,因此用戶需要按需轉換為期望的數據類型。由于這種需求非常普遍,配置解析器提供了一系列更簡便的方法來處理整數(getint())、浮點數(getfloat())及布爾值(getboolean())。用戶也可以自行注冊轉換器或定制配置解析器已提供的轉換器。

>>> topsecret.getboolean("ForwardX11")
False
>>> config["bitbucket.org"].getboolean("ForwardX11")
True
>>> config.getboolean("bitbucket.org", "Compression")
True

注意點:getboolean()方法對大小寫不敏感,能識別"yes"/"no", "on"/"off", "true"/"false"和"1"/"0"為對應的布爾值

后備值(Fallback Values)

和字典一樣,可以使用section的get()方法提供后備值:

>>> topsecret.get("CompressionLevel")
"9"
>>> topsecret.get("Cipher")
>>> topsecret.get("Cipher", "3des-cbc")
"3des-cbc

需要注意的是,默認值的優先級高于后備值。比如要想在"topsecret.server.com"中獲取"CompressionLevel"的值,即使指定了后備值,仍然得到的是"DEFAULT"中的值:

>>> topsecret.get("CompressionLevel", "3")
"9"

此外,除了section的get()方法,還提供了解析器級別的get()方法,支持向后兼容,后備值通過fallback關鍵字指定:

>>> config.get("bitbucket.org", "monster", fallback="No such things as monsters")
"No such things as monsters"

fallback關鍵字同樣支持在getint(), getfloat()getboolean()中使用

支持的INI文件結構

配置文件由section組成,每個section以[section_name]的形式打頭,后跟以特定字符(默認是=:)分隔的鍵值對。

默認情況下section名稱區分大小寫,鍵不區分大小寫。

鍵、值的頭部和尾部空格自動移除。

值可以省略,在這種情況下分隔符也可以不要。

值可以跨多行,只要其他行的值比第一行的值縮進更深。

空行可以被忽略或視作多行值的一部分(取決于解析器模式)。

可以包含注解,獨占一行顯示,默認以字符#;為前綴。應該避免注解與鍵或值處在同一行,因為這將導致把注解視為值的一部分。

[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?
插值

ConfigParser支持插值,調用get()方法返回值之前將對值進行預處理

class configparser.BasicInterpolation

默認使用的Interpolation類。允許值包含格式化字符串,該字符串引用同一section中的值或DEFAULTSECTsection中的值。其他默認值可以在初始化時提供。

[Paths]
home_dir: /Users
my_dir: %(home_dir)s/lumberjack
my_pictures: %(my_dir)s/Pictures

在上面的例子中,interpolation設置為BasicInterpolation()的ConfigParser將解析%(home_dir)shome_dir的值,%(my_dir)s將解析為/Users/lumberjack。引用鏈中使用的鍵不需要在配置文件中以任何特定的順序指定。

如果interpolation設置為None,將直接返回%(home_dir)s/lumberjack作為my_dir的值。

class configparser.ExtendedInterpolation

擴展的Interpolation類,實現了更高級的語法。它使用${section:option}表示來自外部section的值,如果省去了section:,默認指當前section(以及可能的DEFAULTSECTsection的值)

[Common]
home_dir: /Users
library_dir: /Library
system_dir: /System
macports_dir: /opt/local

[Frameworks]
Python: 3.2
path: ${Common:system_dir}/Library/Frameworks/

[Arthur]
nickname: Two Sheds
last_name: Jackson
my_dir: ${Common:home_dir}/twosheds
my_pictures: ${my_dir}/Pictures
python_dir: ${Frameworks:path}/Python/Versions/${Frameworks:Python}
映射協議訪問

映射協議訪問是允許像操作字典一樣使用自定義對象的功能的通用名稱。在configparser中,映射接口通過parser["section"]["option"]的形式實現。

parser["section"]返回解析器中section的值的代理,值從原始解析器中獲取但并非通過復制的方式。在section代理上改變值的操作,實際上是對原始解析器的改變。

configparser對象雖然表現的盡可能接近字典,但仍有一些區別需要注意:

默認情況下,section中的所有key能夠以大小寫不敏感的方式訪問。例如for option in parser["section"]語句生成的option名稱總是被optionxform函數轉換為小寫。擁有"a"選項的section通過以下兩種方式訪問都將返回True:

"a" in parser["section"]
"A" in parser["section"]

所有section都包含DEFAULTSECT的值,也就是說,對section的.clear()操作可能并沒有真正的清空,這是因為無法從該section刪除默認值。在除DEFAULTSECT以外的section上刪除默認值(前提是沒有對默認值重寫)將拋出KeyError異常

>>> del topsecret["forwardx11"]
>>> topsecret["forwardx11"]
"yes"
>>> del topsecret["serveraliveinterval"]
Traceback (most recent call last):
  ...
    raise KeyError(key)
KeyError: "serveraliveinterval"

DEFAULTSECT不能從解析器移除

刪除它將拋出ValueError異常

parser.clear()操作對它沒有任何影響

parser.popitem()不會返回DEFAULTSECT

>>> del config["DEFAULT"]
Traceback (most recent call last):
  ...
    raise ValueError("Cannot remove the default section.")
ValueError: Cannot remove the default section.
>>> config.clear()
>>> config["DEFAULT"]["serveraliveinterval"]
"45"

parser.get(section, option, **kwargs) - 第二個參數并非字典的get()方法表示的后備值,但section級別的get()方法與映射協議卻是兼容的

parser.items(raw=False, vars=None)兼容映射協議(返回包含DEFAULTSECT的(section_name, section_proxy)對的列表)。另有指定section的調用方式:parser.items(section, raw=False, vars=None).后者返回指定section的(option, value)對的列表,raw參數指定value中的格式化字符串是否插值表示

>>> list(config.items())
[("DEFAULT", ), ("bitbucket.org", ), ("topsecret.server.com", )]
>>> list(config.items("bitbucket.org"))
[("serveraliveinterval", "45"), ("compression", "yes"), ("compressionlevel", "9"), ("forwardx11", "yes"), ("user", "hg")]
自定義解析器行為

省略

舊版API示例

省略

ConfigParser對象

class configparser.ConfigParser(defaults=None, dict_type=dict, allow_no_value=False, delimiters=("=", ":"), comment_prefixes=("#", ";"), inline_comment_prefixes=None, strict=True, empty_lines_in_values=True, default_section=configparser.DEFAULTSECT, interpolation=BasicInterpolation(), converters={})

defaults()
返回包含實例范圍默認值的字典

sections()
返回可用section的名稱列表(不包含默認section的名稱)

add_section(section)
添加section。如果該section已經存在,拋出DuplicateSectionError異常;如果傳入的是默認section的名稱,拋出ValueError異常;如果傳入的參數不是字符串類型,拋出TypeError異常

has_section(section)
判斷section是否存在。默認section總是返回False

options(section)
返回指定section的可用選項列表(包含DEFAULTSECT中的選項)。指定默認section將拋出NoSectionError異常

has_option(section, option)
如果section存在且包含指定的option,返回True,否則返回False。如果傳遞的section為None"",視為默認section

read(filenames, encoding=None)
讀取并解析可迭代的文件名,返回成功解析的文件名列表

如果filenames是一個字符串,或字節對象又或者是類路徑對象,視其為單個文件。如果filenames中的某個文件不能打開,該文件將被忽略

如果filenames中所有文件都不存在,ConfigParser實例將包含空數據集。如果某個應用需要導入初始化值,應該在調用read()導入可選配置文件前調用read_file()讀取相應的初始化配置文件,因為read_file()讀取不能打開的文件時會拋出FileNotFoundError異常,而不會直接忽略

import configparser, os

config = configparser.ConfigParser()
config.read_file(open("defaults.cfg"))
config.read(["site.cfg", os.path.expanduser("~/.myapp.cfg")],
            encoding="cp1250")

read_file(f, source=None)
從可迭代生成Unicode字符串的f(例如以文本模式打開的文件對象)讀取及解析配置數據

read_string(string, source="")
從字符串中解析配置數據

read_dict(dictionary, source="")
從提供類似dict的items()方法的對象加載配置。key是section名稱,value是包含選項和值的字典。如果使用的字典類型支持保留順序,section及其選項將按序添加,所有值自動轉換為字符串

get(section, option, * , raw=False, vars=None[, fallback])
獲取指定section的選項的值。vars參數作為字典對象傳遞。option按照vars,section,DEFAULTSECT的順序進行查找,如果不存在且提供了fallback參數,返回fallback的值,fallback可以是None

raw參數指定value中的格式化字符串是否插值表示,與option的查找順序相同

getint(section, option, * , raw=False, vars=None[, fallback])
轉換option的值為int類型

getfloat(section, option, * , raw=False, vars=None[, fallback])
轉換option的值為float類型

getboolean(section, option, * , raw=False, vars=None[, fallback])
轉換option的值為bool類型

items(raw=False, vars=None)
items(section, raw=False, vars=None)
前者返回包含DEFAULTSECT的(section_name, section_proxy)對的列表。后者返回指定section的(option, value)對的列表

set(section, option, value)
如果section存在,設置option的值為value,否則拋出NoSectionError異常。option和value必須是字符串類型,否則拋出TypeError異常

write(fileobject, space_around_delimiters=True)
將ConfigParser對象寫入以文件模式打開的文件。

remove_option(section, option)
從section中移除指定的選項。如果section不存在,拋出NoSectionError異常。如果option存在返回True,否則返回False

remove_section(section)
移除指定section。如果section存在返回True,否則返回False(對默認section的操作總是返回False)

optionxform(option)
對option的處理函數,默認返回option的小寫形式??梢酝ㄟ^繼承重寫或設置ConfigParser實例的optionxform屬性(接收一個字符串參數并返回一個新的字符串的函數)改變默認行為。

cfgparser = ConfigParser()
cfgparser.optionxform = str

讀取配置文件時,option兩邊的空格在調用此函數前先被移除

readfp(fp, filename=None)
已棄用,使用 read_file()替代

configparser.MAX_INTERPOLATION_DEPTH
當raw參數為false時,get()方法遞歸插值的最大深度。僅在使用默認的BasicInterpolation時才有意義

RawConfigParser對象

省略

異常

省略

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/42610.html

相關文章

  • Python解析配置模塊ConfigParser詳解

    摘要:解析配置模塊之詳解基本的讀取配置文件直接讀取文件內容得到所有的,并以列表的形式返回得到該的所有得到該的所有鍵值對得到中的值,返回為類型得到中的值,返回為類型,還有相應的和函數。是最基礎的文件讀取類,支持對變量的解析。 Python 解析配置模塊之ConfigParser詳解 1.基本的讀取配置文件 -read(filename) 直接讀取ini文件內容 -sections() 得到所有...

    weknow619 評論0 收藏0
  • python--模塊2

    摘要:可能沒有用戶輸出的消息創建一個,用于寫入日志文件再創建一個,用于輸出到控制臺對象可以添加多個和對象序列化模塊什么叫序列化將原本的字典列表等內容轉換成一個字符串的過程就叫做序列化。 hashlib模塊 1.Python的hashlib提供了常見的摘要算法,如MD5,SHA1等等。什么是摘要算法呢?摘要算法又稱哈希算法、散列算法。它通過一個函數,把任意長度的數據轉換為一個長度固定的數據串(...

    13651657101 評論0 收藏0
  • 【自動化測試】Python 讀取 .ini 格式文件

    摘要:大家應該接觸過格式的配置文件。特別是后續做自動化的測試,需要拎出一部分配置信息,進行管理。二讀取文件自帶有讀取配置文件的模塊,配置文件不區分大小寫。讀取文件內容得到所有的,并以列表的形式返回。 大家應該接觸過.ini格式的配置文件。配置文件就是把一些配置相關信息提取出去來進行單獨管理,如果以后有變動只需改配置文件,無需修改代碼。特別是后續做自動化的測試,需要拎出一部分配置信息,進行管...

    Eric 評論0 收藏0
  • PyCharm的安裝、設置及使用

    摘要:的簡介隨著近年來的火爆程度逐年攀升越來越多的開發者開始因其豐富的庫支持簡潔高效的語法以及強大的運算速度而對其紛紛側目也正因此及基于它而生的各類框架如等普遍應用于當下各類場景下作為時代的弄潮兒大有獨領風騷之勢也正是因此毫無疑問是當前最好的編程 PyCharm的簡介 隨著近年來Python的火爆程度逐年攀升,越來越多的開發者開始因其豐富的庫支持,簡潔高效的語法以及強大的運算速度而對其紛紛側...

    jzzlee 評論0 收藏0
  • Python Tips

    摘要:的三種數據類型字典列表元組,分別用花括號中括號小括號表示。約等于上句,可能是因為自定義變量名與內部函數或變量同名了。下,默認路徑一般為。的日志模塊中計時器定時器計劃任務,。對象的問題怎樣忽略警告不打印煩人的警告打印到終端同時記錄到文件。 Python Enhancement Proposal。(PEP,Python增強建議書) Python之禪(import this) Pytho...

    Reducto 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<