用于生成和修改常见配置文档,当前模块的名称在 python 3.x 版本中变更为 configparser

配置文件信息:

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

创建配置文件:
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'
#写入配置文件
with open('example.ini', 'w') as configfile:
config.write(configfile)

读配置文件:

import configparser
config = configparser.ConfigParser()
config.read('example.ini')
# 读取默认配置节点信息
print(config.defaults())
#读取其他节点
print(config.sections()) 获取配置文件值:
print(config.get("Mail_Info", "subject_name"))
print(config.get("Mail_Info", "log_path"))
print(config.get("Mail_Info", "mail_path"))

最新文章

  1. Spark 入门
  2. 父子页面之间元素相互操作(iframe子页面)
  3. web app响应式字体设置!rem之我见
  4. scala-类
  5. Quickling技术
  6. poj 3368 Frequent values(RMQ)
  7. struts 标签<s:ierator>的简单使用说明
  8. android wheelview 滚轮控件
  9. jQuery的拾色器
  10. thinkphp 官方文件执行引入流程
  11. Java-IO之ByteArrayOutputStream
  12. 老牌开源Office操作组件NPOI现已支持.NET Core
  13. 使用Consul 实现 MagicOnion(GRpc) 服务注册和发现
  14. 295B - Greg and Graph (floyd逆序处理)
  15. 微信小程序 条件渲染 wx:if
  16. Python开发【笔记】:PEP 8 编码规范
  17. AppState使用
  18. 【12】python 栈型数据结构模拟、队列型数据结构模拟
  19. 1、类、封装(私有private、this关键字)
  20. [转]C/C++关于全局变量和局部变量初始化与不初始化的区别

热门文章

  1. Python实现k-近邻算法案例学习
  2. 我的基于 JamStack 的新博客
  3. ArcGIS Python判断数据是否存在
  4. S2-015 CVE-2013-2135, CVE-2013-2134
  5. (10)go-micro微服务发送邮件
  6. 题解 CF1579G Minimal Coverage
  7. C++Day09 深拷贝、写时复制(cow)、短字符串优化
  8. wsl2和ArchLinux的安装
  9. IIS服务器SSL证书安装 (pfx文件不能直接运行时)
  10. 网页怎样引入本地硬盘上的JS文档