1. 程式人生 > >python四十:configparse模組

python四十:configparse模組

 

# 建立配置文件
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'] = '55555'
topsecret['ForwardXll'] = 'no'

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