1. 程式人生 > >python讀取/寫入配置文件ini方法

python讀取/寫入配置文件ini方法

port ado 參數 aid 操作 con 單獨 items 數據

在寫測試腳本時,經常有一些需要變動的數據,可以單獨放在ini文件裏,然後讀取傳遞給

相應的函數,這樣程序操作更靈活。具體的方法介紹如下:

文件結構:
技術分享圖片

Cofig.ini內容
[test1]
ip = 10.10.10.10

[test2]
port = 25566

[test3]
name = www.baidu.com

直接上代碼

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‘)]

python讀取/寫入配置文件ini方法