我们写Python脚本的时候,里面往往会用到许多变量、参数等,有时候这些变量、参数是需要我们动态的赋值的,如果脚本较长逐个查找替换是比较麻烦的,这里就可以使用配置文件,将一些需要频繁变化的参数变的可配置

配置文件的格式一般为conf

# -*-coding:utf-8-*-
import configparser


def load_conf():
    print("加载配置文件")
    cf = configparser.ConfigParser()
    cf.read("z.conf", encoding="UTF-8")
    secs = cf.sections()
    if len(secs) == 0:
        raise TypeError("配置文件无效")
    print("配置文件已加载")
    print("解析配置文件")
    conf_dict_list = [dict()]
    for x in range(len(conf_dict_list)):
        sec = secs[x]
        ops_list = cf.options(sec)
        for ops in ops_list:
            conf_dict_list[x][ops] = cf.get(sec, ops)
    print("配置文件解析成功")
    return conf_dict_list[0]