首页 > 编程语言 > 详细

Python configparser模块

时间:2017-12-31 10:02:18      阅读:157      评论:0      收藏:0      [点我收藏+]

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

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模块

原文:https://www.cnblogs.com/GhostCatcg/p/8151888.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!