久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

Python配置文件解析configparser

 流形sbz 2023-11-03 發(fā)布于甘肅

寫(xiě)一個(gè)程序的時(shí)候有些內(nèi)容需要?jiǎng)討B(tài)調(diào)整

這些可以動(dòng)態(tài)改變的值,,可以放在一個(gè)單獨(dú)的配置文件中,這樣程序代碼不需要變化,,只需要調(diào)整配置文件中的值即可,。

Python ConfigParser

ConfigParser是一個(gè) Python 類(lèi),為 Python 程序?qū)崿F(xiàn)基本的配置語(yǔ)言,。 它提供類(lèi)似于 Microsoft Windows INI 文件的結(jié)構(gòu)

  • 配置文件由各部分組成,,后跟選項(xiàng)的鍵/值對(duì)。
  • 段名用[]字符分隔,。 這些對(duì)用:=隔開(kāi),。 注釋以#;開(kāi)頭。
[DEFAULT]ServerAliveInterval = 45Compression = yesCompressionLevel = 9ForwardX11 = yes[bitbucket.org]User = hg[topsecret.server.com]Port = 50022ForwardX11 = no
  • [DEFAULT]表示一段配置
  • ServerAliveInterval = 45表示一個(gè)key-value的配置
[DEFAULT]ServerAliveInterval = 45Compression = yesCompressionLevel = 9ForwardX11 = yes
  • 如何取到 ServerAliveInterval對(duì)應(yīng)的值45,?
import configparserconfig = configparser.ConfigParser()config.read('my.ini')DEFAULT = config['DEFAULT'] print(DEFAULT, )a = DEFAULT['ServerAliveInterval']print(a)

其實(shí)你可以理解為這樣的結(jié)構(gòu) config['DEFAULT']的值是一個(gè)字典,,代碼下面的配置信息

config['DEFAULT'] = {'ServerAliveInterval': '45',...                              'Compression': 'yes',...                              'CompressionLevel': '9'}

獲取所有的段

卷面我們知道用中括號(hào)飯團(tuán)的一行為一個(gè)段[DEFAULT],如何獲取所有的這樣的段

sections = config.sections()
import configparserconfig = configparser.ConfigParser()config.read('my.ini') sections = config.sections()print(f'Sections: {sections}')
Python配置文件解析configparser
Sections: ['bitbucket.org', 'topsecret.server.com']
  • 輸出中少了一個(gè)DEFAULT段,,實(shí)際上這個(gè)是默認(rèn)的段,。

把這個(gè)段的修改修為 DEFAULT-1 就可以獲取所有的段名了

[DEFAULT-1]ServerAliveInterval = 45Compression = yesCompressionLevel = 9ForwardX11 = yes[bitbucket.org]User = hg[topsecret.server.com]Port = 50022ForwardX11 = no
Sections: ['DEFAULT-1', 'bitbucket.org', 'topsecret.server.com']

使用字典代碼ini文件

從上面的結(jié)構(gòu)我們可以發(fā)現(xiàn)其實(shí)這個(gè)ini文件和字典結(jié)構(gòu)很類(lèi)似

可以使用read_dict來(lái)從字典中解析配置

cfg_data = {    'DEFAULT': { 'ServerAliveInterval': '45',                 'Compression'        : 'yes',                 'CompressionLevel'   : '9',                 'ForwardX11'         : 'yes'                },         'bitbucket.org': {'User': 'hg'} ,          'topsecret.server.com':                 {                     'Port'       : '50022',                     'ForwardX11' : 'no',                  },}config = configparser.ConfigParser()config.read_dict(cfg_data)print(config)sections = config.sections()print(f'Sections: {sections}')
config.read_dict(cfg_data)

通過(guò)程序添加新的配置項(xiàng)

  • add_section添加一個(gè)段
  • 然后加入配置項(xiàng)
  • 最后寫(xiě)入文件
config = configparser.ConfigParser()config.add_section('NEW-CONFIG')config['NEW-CONFIG']['host'] = 'localhost'config['NEW-CONFIG']['user'] = 'user7'config['NEW-CONFIG']['passwd'] = 's$cret'config['NEW-CONFIG']['db'] = 'ydb'with open('my.ini', 'a') as configfile:    config.write(configfile)

可以看到新增加了一個(gè)段和配置項(xiàng)[NEW-CONFIG],注意里面的換行問(wèn)題

Python配置文件解析configparser
[DEFAULT]ServerAliveInterval = 45Compression = yesCompressionLevel = 9ForwardX11 = yes[bitbucket.org]User = hg[topsecret.server.com]Port = 50022ForwardX11 = no[NEW-CONFIG]host = localhostuser = user7passwd = s$cretdb = ydb

ini文件中的一些技巧

下面的配置文件,,目錄,,文件名 最后一個(gè)是完整的文件路徑 是人家兩個(gè)配置計(jì)算出來(lái)的

%(users_dir)s\%(name)s表示使用 users_dir和 name這兩個(gè)配置的值拼接起來(lái)的

請(qǐng)注意,,“ s”字符是語(yǔ)法的一部分,。

Python配置文件解析configparser

my.ini配置文件內(nèi)容

[info]users_dir= C:\Usersname= Janohome_dir= %(users_dir)s\%(name)s
home_dir = config['info']['home_dir']print(home_dir)
Sections: ['bitbucket.org', 'topsecret.server.com', 'NEW-CONFIG', 'info']C:\Users\Jano
Python配置文件解析configparser

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶(hù)發(fā)布,,不代表本站觀點(diǎn),。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買(mǎi)等信息,,謹(jǐn)防詐騙,。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào),。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶(hù) 評(píng)論公約