python使用configparser读取ini格式的配置文件

Posted Data+Science+Insight

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python使用configparser读取ini格式的配置文件相关的知识,希望对你有一定的参考价值。

python使用configparser读取ini格式的配置文件

 

来自Python标准库的configparser模块定义了读取和写入Microsoft Windows操作系统使用的配置文件的功能。这样的文件通常有. ini扩展名。

 

configparser 模块能被用来读取配置文件。

例如,假设你有如下的配置文件:

[Settings]
# Set detailed log for additional debugging info
DetailedLog=1
RunStatus=1
StatusPort=6090
StatusRefresh=10
Archive=1
# Sets the location of the MV_FTP log file
LogFile=/opt/ecs/mvuser/MV_IPTel/log/MV_IPTel.log
Version=0.9 Build 4
ServerName=Unknown

[FTP]
# set the FTP server active
RunFTP=1
# defines the FTP control port
FTPPort=21
# Sets the location of the FTP data directory
FTPDir=/opt/ecs/mvuser/MV_IPTel/data/FTPdata
# set

以上是关于python使用configparser读取ini格式的配置文件的主要内容,如果未能解决你的问题,请参考以下文章

python模块Configparser读取 ini(cfg,txt)等配置文件

python模块---configparser 编辑ini文件

Python+Selenium进行UI自动化测试项目中,常用的小技巧2:读取配置文件(configparser,.ini文件)

python 读取ini 配置文件

没有section的ini文件可以用ConfigParser解析吗

python读取ini文件