您的当前位置:首页正文

Pythonconfigparser模块封装及构造配置文件

2020-12-03 来源:易榕旅网
Pythonconfigparser模块封装及构造配置⽂件

1.configparser模块简介

使⽤配置⽂件来灵活的配置⼀些参数是⼀件很常见的事情,配置⽂件的解析并不复杂,在python⾥更是如此,在官⽅发布的库中就包含有做这件事情的库,那就是configParser

configParser解析的配置⽂件的格式⽐较象ini的配置⽂件格式,就是⽂件中由多个section构成,每个section下⼜有多个配置项

2.看⼀下configparser⽣成的配置⽂件的格式ini配置⽂件格式如下:这⾥是注释

[log]

log_path = base_dir/OutPut/log/[image]

img_path = base_dir/OutPut/image/[report]

report_path = base_dir/OutPut/report/

[test_case]

test_case_path = base_dir/TestData/case.xlsx

3.读取⽂件内容

import configparserimport osimport sys

BASE_DIR = os.path.dirname(os.path.dirname(os.path.dirname(__file__)))

if sys.platform == \"win32\":

ENV_CONF_DIR = os.path.join(BASE_DIR, 'Common/conf/env_config.ini').replace('/', '\\\\')else:

ENV_CONF_DIR = os.path.join(BASE_DIR, 'Common/conf/env_config.ini')class Config(object):

def __init__(self, path):

self.path = path #配置⽂件名

self.cf = configparser.ConfigParser() #创建⼀个配置⽂件对象

self.cf.read(self.path, encoding='utf-8') # 调⽤配置⽂件对象的读取⽅法,并传⼊⼀个配置⽂件名 def get(self, field, key): # 获取字符串类型的选项值 result = \"\" try:

result = self.cf.get(field, key) except: result = \"\" return result

def set(self, field, key, value): try:

self.cf.set(field, key, value)

self.cf.write(open(self.path, 'w'))#创建⼀个配置⽂件并将获取到的配置信息使⽤配置⽂件对象的写⼊⽅法进⾏写⼊ except:

return False return True

def r_config(config_file_path, field, key): rf = configparser.ConfigParser() try:

rf.read(config_file_path, encoding='utf-8') if sys.platform == \"win32\":

result = rf.get(field, key).replace('base_dir', str(BASE_DIR)).replace('/', '\\\\') else:

result = rf.get(field, key).replace('base_dir', str(BASE_DIR)) except:

sys.exit(1) return result

def w_config(config_file_path, field, key, value): wf = configparser.ConfigParser() try:

wf.read(config_file_path) wf.set(field, key, value)

wf.write(open(config_file_path, 'w')) except:

sys.exit(1) return True

if __name__ == '__main__':

print(r_config(ENV_CONF_DIR, 'log', 'log_path')) print(r_config(ENV_CONF_DIR, 'DB', 'database'))

以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。

因篇幅问题不能全部显示,请点此查看更多更全内容