python读取ini配置文件过程示范
时间:2020-10-07 14:27:40|栏目:Python代码|点击: 次
这篇文章主要介绍了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读取word文档,插入mysql数据库的示例代码
栏 目:Python代码
本文标题:python读取ini配置文件过程示范
本文地址:http://www.codeinn.net/misctech/8096.html