對ConfigParser模組的詳細介紹

來源:互聯網
上載者:User

一、簡介

用於產生和修改常見配置文檔,當前模組的名稱在 python 3.x 版本中變更為 configparser。

二、設定檔格式

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

  

三、建立設定檔

import configparser# 產生一個處理對象config = configparser.ConfigParser()  #預設配置 config["DEFAULT"] = {'ServerAliveInterval': '45',                     'Compression': 'yes',                     'CompressionLevel': '9'}#產生其他的配置組config['bitbucket.org'] = {}config['bitbucket.org']['User'] = 'hg'config['topsecret.server.com'] = {}topsecret = config['topsecret.server.com']topsecret['Host Port'] = '50022'  # mutates the parsertopsecret['ForwardX11'] = 'no'  # same hereconfig['DEFAULT']['ForwardX11'] = 'yes'#寫入設定檔with open('example.ini', 'w') as configfile:    config.write(configfile)

  

四、讀取設定檔

1、讀取節點資訊

import configparserconfig = configparser.ConfigParser()config.read('example.ini')# 讀取預設配置節點資訊print(config.defaults())#讀取其他節點print(config.sections())# 輸出OrderedDict([('compression', 'yes'), ('serveraliveinterval', '45'), ('compressionlevel', '9'), ('forwardx11', 'yes')])['bitbucket.org', 'topsecret.server.com']

 

2、判讀配置節點名是否存在

print('ssss' in config)print('bitbucket.org' in config)#輸出FalseTrue

  

3、讀取配置節點內的資訊

print(config['bitbucket.org']['user'])#輸出hg

  

4.迴圈讀取配置節點全部資訊

for key in config['bitbucket.org']:    print(key, ':', config['bitbucket.org'][key])#輸出user : hgcompression : yesserveraliveinterval : 45compressionlevel : 9forwardx11 : yes

  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.