configparser----配置文件模块

Posted zihkj

tags:

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

配置文件配置方法:

[ElementProfile]
landing=id:btn_account
error_message=xpath://div[@class=pop_head]/div/span
username_error=xpath://div[@class=username_msg msg]/span
username=id:username
error_content=xpath://div[@class=protocol]/a[@ href="//about.58.com/home2/home_pc/syxyjgg/771.html"]

 

configparser模块

1、第三方模块安装:pip install configparser

2、导入模块:import configparser

3、模块的使用:

 1 import configparser
 2 
 3 class ReaDconfigurationFile(object):
 4     def __init__(self,file_name=None , node=None):
 5         if file_name == None:
 6             file_name = rF:项目京东登陆TestcfgConfiguration_file.ini
 7         if node == None:
 8             self.node = ElementProfile
 9         self.file = self.read_file(file_name)
10 
11     #加载配置文件
12     def read_file(self,file_name):
13         file = configparser.ConfigParser()
14         file.read(file_name)
15         return file
16 
17     #读取配置文件的value值
18     def obtain_ini_value(self,key):
19         file_value=self.file.get(self.node,key)
20         return file_value

以上是关于configparser----配置文件模块的主要内容,如果未能解决你的问题,请参考以下文章

Python中ConfigParser模块详谈

Python中配置文件解析模块-ConfigParser

configparser 配置文件模块

pythopn configparser 模块(配置)

python解析配置文件---configparser模块

python读取配置文件 变量 ConfigParser模块