python读取ini配置文件

Posted roverqqq

tags:

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

config.ini

[section]
name	=	roverq
id		=	12345
place	=	china

main.py

#!/usr/bin/python3

import os
import configparser

def getConfig():
    # 当前文件路径
    currDir = os.getcwd()# 在当前文件路径下查找.ini文件
    configPath = os.path.join(currDir, "config.ini")
    conf = configparser.ConfigParser()
    # 读取.ini文件
    conf.read(configPath)
    # get()函数读取section里的参数值
    configContent = dict(conf.items(\'section\'))
    print(configContent)


if (__name__ == \'__main__\'):
    getConfig()

 

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

python3读取ini配置文件

python读取ini配置文件

python 读取ini 配置文件

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

转 python3 读取 ini配置文件

通过python读取ini配置文件