[Python]configparser模块读取配置文件
2021-05-29 13:02
标签:__file__ cti 读取配置 pat ret col get value 读取 config.ini test.py [Python]configparser模块读取配置文件 标签:__file__ cti 读取配置 pat ret col get value 读取 原文地址:https://www.cnblogs.com/blackpink/p/14769313.html[phone]
imei = 123456789
num = 0 / 14
build = 00WWYL
CUR_DIR = os.path.dirname(os.path.abspath(__file__))
configFilePath = os.path.join(CUR_DIR, ‘../bin/config.ini‘)
def get_config_values(self, section, option):
config = configparser.ConfigParser()
# 避免乱码问题读取配置文件
config.read(configFilePath, encoding=‘utf-8‘)
return config.get(section=section, option=option)
IMEI = get_config_values(‘phone‘, ‘imei‘)
num = get_config_values(‘phone‘, ‘num‘)
build = get_config_values(‘phone‘, ‘build‘)
上一篇:spring知识点总结
下一篇:python基础之运算符
文章标题:[Python]configparser模块读取配置文件
文章链接:http://soscw.com/index.php/essay/89121.html