在寫測試腳本時,常常有一些須要變更的數據,能夠單獨放在ini文件裏,而後讀取傳遞給python
相應的函數,這樣程序操做更靈活。具體的方法介紹以下:ide
文件結構:
函數
Cofig.ini內容:
[test1]
ip = 10.10.10.10測試
[test2]
port = 25566code
[test3]
name = www.baidu.comblog
直接上代碼ip
import configparser conf = configparser.ConfigParser() conf.read("cofig.ini") #讀取配置文件裏全部的Section print(conf.sections()) #打印出test1這個section下包含key print(conf.options("test1")) #打印test1這個section下全部的key及對應的values print(conf.items("test1")) conf.add_section("add")#添加section到配置文件 conf.set("add","ip","11.11.1.1")#add section新增ip參數和值 conf.set("add","addr","shenzhen") conf.write(open("cofig.ini","w"))#寫完數據要write一下 print(conf.items("add"))#打印剛添加的新內容
輸出的結果:
['test1', 'test2', 'test3']
['ip']
[('ip', '10.10.10.10')]
[('ip', '11.11.1.1'), ('addr', 'shenzhen')]it