时间:2021-05-22
这篇文章主要介绍了Python使用configparser库读取配置文件,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
背景:
在写接口自动化框架,配置数据库连接时,测试环境和UAT环境的连接信息不一致,这时可以将连接信息写到conf或者cfg配置文件中
python环境请自行准备。
python代码直接封装成类,方便其他模块的引入。
from configparser import ConfigParserclass DoConfig: def __init__(self,filepath,encoding='utf-8'): self.cf = ConfigParser() self.cf.read(filepath,encoding) #获取所有的section def get_sections(self): return self.cf.sections() #获取某一section下的所有option def get_option(self,section): return self.cf.options(section) #获取section、option下的某一项值-str值 def get_strValue(self,section,option): return self.cf.get(section,option) # 获取section、option下的某一项值-int值 def get_intValue(self, section, option): return self.cf.getint(section, option) # 获取section、option下的某一项值-float值 def get_floatValue(self, section, option): return self.cf.getfloat(section, option) # 获取section、option下的某一项值-bool值 def get_boolValue(self, section, option): return self.cf.getboolean(section, option) def setdata(self,section,option,value): return self.cf.set(section,option,value)if __name__ == '__main__': cf = DoConfig('demo.conf') res = cf.get_sections() print(res) res = cf.get_option('db') print(res) res = cf.get_strValue('db','db_name') print(res) res = cf.get_intValue('db','db_port') print(res) res = cf.get_floatValue('user_info','salary') print(res) res = cf.get_boolValue('db','is') print(res) cf.setdata('db','db_port','3306') res = cf.get_strValue('db', 'db_port') print(res)以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
python配置文件有.conf,.ini,.txt等多种python集成的标准库的ConfigParser模块提供一套API来读取和操作配置文件我的配置文件如
ConfigParser模块在python中用来读取配置文件,配置文件的格式跟windows下的ini配置文件相似,可以包含一个或多个节(section),每个
ConfigParser模块在Python3修改为configparser,这个模块定义了一个ConfigeParser类,该类的作用是让配置文件生效。配置文件
1.configparser模块简介使用配置文件来灵活的配置一些参数是一件很常见的事情,配置文件的解析并不复杂,在python里更是如此,在官方发布的库中就包含
一、configparser模块是什么可以用来操作后缀为.ini的配置文件;python标准库(就是python自带的意思,无需安装)二、configparse