获取配置文件信息——configparser
Posted 残~枫~
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取配置文件信息——configparser相关的知识,希望对你有一定的参考价值。
配置文件host.int格式如下:
[host]
product=xxxxxxxxxx
test=xxxxxxxxxx
python 3.x代码如下:
import os,configparser
def filePath(path):
return os.path.join(os.path.abspath(os.path.dirname(os.path.dirname(__file__))),path)
def getHostData():
#获取配置文件host信息
cf=configparser.ConfigParser()
cf.read(filePath(‘config\\host.ini‘))
product=cf.get(‘host‘,‘product‘)
test=cf.get(‘host‘,‘test‘)
return product,test
以上是关于获取配置文件信息——configparser的主要内容,如果未能解决你的问题,请参考以下文章
Python模块之: ConfigParser 配置文件读取