python configparser模块常用操作

Posted 安好_世界

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python configparser模块常用操作相关的知识,希望对你有一定的参考价值。

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模块常用操作的主要内容,如果未能解决你的问题,请参考以下文章

python常用模块之configparser模块

Python函数和常用模块day06:shutil-shelve-xml-configparser模块

python常用模块之configparser模块

常用模块-----configparser & subprocess

文成小盆友python-num7 -常用模块补充 ,python 牛逼的面相对象

python 常用模块 time random os模块 sys模块 json & pickle shelve模块 xml模块 configparser hashlib subprocess