一、簡介
用於產生和修改常見配置文檔,當前模組的名稱在 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