当前位置:主页 > 软件编程 > Python代码 >

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格式)

您可能感兴趣的文章:

相关文章