python 读取ini 配置文件
Posted 青色蔷薇
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 读取ini 配置文件相关的知识,希望对你有一定的参考价值。
安装
pip install configparser
1 配置文件 config.ini:
[MysqlDB]
user=root
passwd=123456
sport=3306
db_name=my_db
charset=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格式)
以上是关于python 读取ini 配置文件的主要内容,如果未能解决你的问题,请参考以下文章