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 配置文件的主要内容,如果未能解决你的问题,请参考以下文章

python读取ini配置文件+Scala读取配置文件

通过python读取ini配置文件

python读取/写入配置文件ini方法

请问如何用ASP读取ini配置文件

Python配置文件管理之ini和yaml文件读取

python读取ini配置文件