python configparser模块常用操作
2021-05-12 20:30
阅读:621
标签:pen host python bucket forward live war amp evel
import configparser
#write
‘‘‘
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 parser
topsecret[‘ForwardX11‘] = ‘no‘ # same here
config[‘DEFAULT‘][‘ForwardX11‘] = ‘yes‘
with open(‘example.ini‘, ‘w‘) as configfile:
config.write(configfile)
#read
config = configparser.ConfigParser()
config.read(‘example.ini‘)
print(config.sections())#取key
print(config[‘bitbucket.org‘][‘User‘])#取value值
‘‘‘
#增删改查语法
config = configparser.ConfigParser()
config.read(‘example.ini‘)
sec = config.remove_section(‘bitbucket.org‘)
config.write(open(‘i.cfg‘, "w"))#删除bitbucket.org并且创建一个新的文件
python configparser模块常用操作
标签:pen host python bucket forward live war amp evel
原文地址:https://www.cnblogs.com/anhao-world/p/13138152.html
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:python configparser模块常用操作
文章链接:http://soscw.com/index.php/essay/84847.html
文章标题:python configparser模块常用操作
文章链接:http://soscw.com/index.php/essay/84847.html
评论
亲,登录后才可以留言!