服务器之家

服务器之家 > 正文

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

时间:2020-09-04 13:22     来源/作者:肖佳

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

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

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

配置文件   test.conf   

?
1
2
3
4
5
6
7
[section1]
name = tank
age = 28
 
[section2]
ip = 192.168.1.1
port = 8080

Python代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# -* - 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模块读写配置文件的资料整理,后续继续补充相关资料,谢谢大家对本站的支持!

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享 2020-04-07
最新idea2020注册码永久激活(激活到2100年)
最新idea2020注册码永久激活(激活到2100年) 2020-07-29
电视剧《琉璃》全集在线观看 琉璃美人煞1-59集免费观看地址
电视剧《琉璃》全集在线观看 琉璃美人煞1-59集免费观看地址 2020-08-12
返回顶部