python操作配置文件
一、常用选项:
config = ConfigParser.ConfigParser() //初始化config实例(建立一个空的数据集实例)
config.read(filename) //通过load文件filename来初始化config实例
config.get(section, key) //获得指定section中的key的value
config.set(section, key, value) //在指定section中,添加一对key-value键值对
config.remove_option(section, key) //删除指定section的key
config.remove_section(section) //删除指定section
config.write(open(filename,‘w’)) //保存配置
二、配置文件的读取
read(filename) # 读取文件内容
sections() # 获取所有secion
options(section) #获取该section的所有option
items(section) #获取该section的所有option以及value
get(section,option) #获取section中option的value值,返回为string类型
getint(section,option) #获取section中option的value值,返回为int类型
getfloat(section, option) #获取section中option的value值,返回为float类型
getboolean(section,option) #获取section中option的value值,返回为boolen类型
**三、**在写测试脚本时,经常有一些需要变动的数据,可以单独放在ini文件里,然后读取传递给相应的函数,这样程序操作更灵活
这里主要说的就是python使用自带的configparser模块用来读取配置文件,配置文件的形式类似windows中的ini文件,但这使之个文件后缀而已,自然可以是.con或者.txt,但里面内容却是类似的。如下,以.ini文件为例,新建config.ini文件:
[Mysql-Database]
host = localhost
user = root
password = 123456
db = test
charset : utf8
others : hahaha
[Email]
host = https://mail.qq.com
address = 1715338780@qq.com
password = 123456
其中中括号中的是section
section下是以key=value 格式的键值对,或者key:value的形式
新建一个readconfig.py文件,读取配置文件的信息
import configparser
cf = configparser.ConfigParser()
cf.read("config.ini")
secs = cf.sections() # 获取文件中所有的section(一个配置文件中可以有多个配置,如数据库相关的配置,邮箱相关的配置,每个section由[]包裹,即[section]),并以列表的形式返回
print('secs is',secs)
options = cf.options("Mysql-Database") # 获取某个section名为Mysql-Database所对应的键
print('options is',options)
items = cf.items("Mysql-Database") # 获取section名为Mysql-Database所对应的全部键值对
print('items is',items)
host = cf.get("Mysql-Database", "host") # 获取