1
0
mirror of https://gitee.com/coder-xiaomo/gitee2github synced 2025-01-27 11:40:28 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
gitee2github/assets/readConfigFile.py

13 lines
444 B
Python
Raw Normal View History

import configparser
def readConfigFile(configFilePath):
# 可以不考虑配置文件不存在的情况
# 实例化configParser对象
config = configparser.ConfigParser()
# -read读取ini文件
config.read(configFilePath, encoding='UTF-8') # GB18030
# -sections得到所有的section并以列表的形式返回
# configSections = config.sections()
return config
print("[info] 配置文件读取完成")