Python configparser模块

Posted GCat

tags:

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

来看一个好多软件的常见文档格式如下:

1
2
3
4
5
6
7
8
9
10
11
12
[DEFAULT]
ServerAliveInterval = 45
Compression = yes
CompressionLevel = 9
ForwardX11 = yes
  
[bitbucket.org]
User = hg
  
[topsecret.server.com]
Port = 50022
ForwardX11 = no

如果想用python生成一个这样的文档怎么做呢?

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 parser
topsecret[‘ForwardX11‘= ‘no‘  # same here
config[‘DEFAULT‘][‘ForwardX11‘= ‘yes‘<br>
with open(‘example.ini‘‘w‘) as configfile:
   config.write(configfile)
技术分享图片 增删改查

以上是关于Python configparser模块的主要内容,如果未能解决你的问题,请参考以下文章

Python Configparser模块读取写入配置文件

python封装configparser模块获取conf.ini值(优化版)

Python中ConfigParser模块详谈

Python configparser模块

python基础13 ---函数模块4(configparser模块)

python模块之configparser模块