ini文件的增删改查
作用:用于储存项目的全局配置变量;如接口地址,环境地址,项目地址,输出文件路径
ini文件格式
[节点名称]
选项=选项值
读取文件
import configparser
config=configparser.ConfigParser()
config.read("文件路径+文件名",encoding="utf-8")
# 获取ini文件中的所有节点
sections=config.sections()
# 获取ini文件中某个节点下所有的选项值
options=config.options(section="节点名")
# 获取某个节点下某个选项的值
value=config.get(section="节点名",option="选项")
# 获取某个节点下的所有选项及选项值
values=config.items(section="节点名")
增加/修改一个节点、选项
#节点名
new_section="file_path"
# 如果不存在就写入
if new_section not in sections:config.add_section("file_path")
# 给节点file_path添加选项值
config.set(section="file_path",option="file1",value="路径地址")
# 将以上内容保存在ini文件中
with open("ini文件路径地址") as file:config.write(file)
删除一个节点
# 删除节点
del_section="file_path"
# 如果存在则删除
if del_section in sections:config.remove_section(section=del_section)
# 删除后保存下
with open("ini文件路径","w+") as file:config.write(file)
# 删除选项及选项值
config.remove_option(section="file_path",option="file1")
with open("ini文件地址","w+")as file:config.write(file)