Python学习 :常用模块(四)----- 配置文档
程序员文章站
2022-07-23 22:54:42
常用模块(四) 八、configparser 模块 官方介绍:A configuration file consists of sections, lead by a "[section]" header,and followed by "name: value" entries, with con ......
常用模块(四)
八、configparser 模块
官方介绍:a configuration file consists of sections, lead by a "[section]" header,and followed by "name: value" entries,
with continuations and such in the style of rfc 822.
configparse 模块在 python3 中修改为 configparse ,此模块常用于生成和修改常见配置文档
eg.编辑文档的配置文件
常见的文档格式
[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'] = {'user' : 'hg'}
# 进行文件配置的第二种方式
config['topsecret.server.com'] = {}
topsecret = config['topsecret.server.com']
topsecret['host port'] = '50022' # 在字典中分别添加键值对
topsecret['forwardx11'] = 'no'
config['default']['forwardx11'] = 'yes' # 为第一个字典添加键值对
with open('example.ini', 'w') as configfile:
config.write(configfile)
configparse 模块的相关操作
工作方式:先把配置文件读取出来,放入一个对象中再进行相应的操作
import configparser
# 把配置文件放入一个对象中,进行读取操作
config = configparser.configparser()
config.read('example.ini')
# 浏览配置文件中的内容
print(config.sections())
>>> ['bitbucket.org', 'topsecret.server.com']
print(config.defaults()) # defaults 为特殊的单元,需要单独进行操作
>>> ordereddict([('compressionlevel', '9'), ('serveraliveinterval', '45'), ('compression', 'yes'), ('forwardx11', 'yes')])
# 对配置文件进行取值
print(config['bitbucket.org']['user'])
for key in config['bitbucket.org']: print(key) # default为特殊的单元,无论对谁进行打印它都会跟着
>>> hg
user
compressionlevel
serveraliveinterval
compression
forwardx11
# 删除数据的两种方法
config.remove_section('topsecret.server.com')
config.remove_option('bitbucket.org','user')
config.set('bitbucket.org','user','mike')
print(config.has_section('topsecret.server.com'))
>>> false
# 修改数据
config.write(open('example.ini', "w")) # 文件一旦写入后不能修改,此操作为重新创建一个名字相同文件,并进行相应的增加、删除、修改操作
上一篇: 尽职尽责的安检员
下一篇: 可乐优品发布国内首个二手手机品牌
推荐阅读
-
Python核心模块urllib的学习(一)--翻译官方Python文档urllib.request
-
python学习笔记:第21天 常用内置模块之collections和time
-
Python学习 :常用模块(二)
-
Python学习 :常用模块(四)----- 配置文档
-
Python学习手册之__main__ 模块,常用第三方模块和打包发布
-
深入学习Python+Opencv常用四种图像处理操作
-
Python学习 :常用模块(三)
-
荐 Python学习19:os模块的常用操作
-
Python学习笔记--Python基础-09-常用模块zip
-
Python 常用模块系列学习--random模块常用function总结--简单应用--验证码生成