configparser库:读写配置文件
用法:
配置文件:conf.ini
[mysql]
ip=127.0.0.1
port=3306
from configparser import ConfigParser
config = ConfigParser()
config.read('文件路径')
config.sections() # ['mysql']
config.options('mysql') # ['ip', 'port']
config.items('mysql') # [('ip', '127.0.0.1'), ('port', '3306')]
dict(config.items('mysql')) # 配合字典使用
路径:
path = os.path.realpath(sys.argv[0]) # 获取当前绝对路径
path_1 = os.path.dirname(path) # 上一级路径
path_2 = os.path.dirname(path_1)
config_path = path_2 + r'\config\conf.ini'
注意:
os.getcwd() # 控制台和编辑器运行输入的路径不一样(???)
__file__ # 打包后是获取不到当前文件的。