码迷,mamicode.com
首页 > 编程语言 > 详细

python模块:configparser模块

时间:2020-10-14 20:30:06      阅读:25      评论:0      收藏:0      [点我收藏+]

标签:open   efault   ret   top   pre   port   ESS   with open   bit   

常见文档的格式如下:

[DEFAULT]
ServerAliveInterval = 45
Compression = yes
CompressionLevel = 9
ForwardX11 = yes
  
[bitbucket.org]
User = hg
  
[topsecret.server.com]
Port = 50022
ForwardX11 = no

用python生成这样的文档如下:

import configparser

config = configparser.ConfigParser()

config["DEFAULT"] = {‘ServerAliveInterval‘: ‘45‘,
                      ‘Compression‘: ‘yes‘,
                     ‘CompressionLevel‘: ‘9‘,
                     ‘ForwardX11‘:‘yes‘
                     }

config[‘bitbucket.org‘] = {‘User‘:‘hg‘}

config[‘topsecret.server.com‘] = {‘Host Port‘:‘50022‘,‘ForwardX11‘:‘no‘}

with open(‘example.ini‘, ‘w‘) as configfile:

   config.write(configfile)

  

python模块:configparser模块

标签:open   efault   ret   top   pre   port   ESS   with open   bit   

原文地址:https://www.cnblogs.com/wuchangblog/p/13813784.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!