Python ConfigParser模块读写配置文件 Python自动化测试ConfigParser模块读写配置文件

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

Python ConfigParser模块读写配置文件 Python自动化测试ConfigParser模块读写配置文件

肖佳   2021-03-22 我要评论
想了解Python自动化测试ConfigParser模块读写配置文件的相关内容吗,肖佳在本文为您仔细讲解Python ConfigParser模块读写配置文件的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Python,ConfigParser模块读写配置文件,ConfigParser模块,Python,ConfigParser,下面大家一起来学习吧。

Python自动化测试ConfigParser模块读写配置文件

ConfigParser 是Python自带的模块, 用来读写配置文件, 用法及其简单。 直接上代码,不解释,不多说。

配置文件的格式是: []包含的叫section,    section 下有option=value这样的键值

配置文件   test.conf   

[section1]
name = tank
age = 28

[section2]
ip = 192.168.1.1
port = 8080

Python代码

# -* - coding: UTF-8 -* - 
import ConfigParser

conf = ConfigParser.ConfigParser()
conf.read("c:\\test.conf")

# 获取指定的section, 指定的option的值
name = conf.get("section1", "name")
print(name)
age = conf.get("section1", "age")
print age

#获取所有的section
sections = conf.sections()
print sections

#写配置文件

# 更新指定section, option的值
conf.set("section2", "port", "8081")

# 写入指定section, 增加新option的值
conf.set("section2", "IEPort", "80")

# 添加新的 section
conf.add_section("new_section")
conf.set("new_section", "new_option", "http://www.cnblogs.com/tankxiao")

# 写回配置文件
conf.write(open("c:\\test.conf","w"))

以上就是对Python ConfigParser模块读写配置文件的资料整理,后续继续补充相关资料,谢谢大家对本站的支持!

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们