码迷,mamicode.com
首页 > 其他好文 > 详细

获取配置文件信息——configparser

时间:2018-05-12 15:08:22      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:代码   ini   eth   get   data   parse   pre   def   conf   

配置文件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

标签:代码   ini   eth   get   data   parse   pre   def   conf   

原文地址:https://www.cnblogs.com/langhuagungun/p/9028552.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!