配置文件如下:
[MODE]mode:{ "register":"all"} 或者 mode = {"register":"all"} 注意:只是:换成了=,效果是一样的。 [basic_info]
HostURL: http://www.baidu.com 或:
HostURL=http://www.baidu.com
@staticmethod def get_config(file_path, section, option): cf = configparser.ConfigParser() cf.read(file_path) # 方式一: return cf[section][option] 或者 # 方式二: return cf[section].get(option)
原文地址:https://www.cnblogs.com/zzllovehappy/p/10762156.html
时间: 2024-10-08 09:11:34