安装
pip install configparser
1 配置文件 config.ini:
[MysqlDB]user=rootpasswd=123456sport=3306db_name=my_dbcharset=utf-8
获取参数:
import configparser config = configparser.ConfigParser() config.read(‘config.ini‘) host=config[‘MysqlDB‘][‘host‘] host=config.get(‘MysqlDB‘,‘host‘) (str格式) sport=cfg.getint(‘MysqlDB‘,‘sport‘) (int格式)
原文地址:https://www.cnblogs.com/cyanrose/p/12073731.html
时间: 2024-10-06 09:26:55