博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
configparser的实践
阅读量:5815 次
发布时间:2019-06-18

本文共 732 字,大约阅读时间需要 2 分钟。

configparser是python 读写ini配置文件的一个开源库,具体的安装过程这里就不用一一描述。直接上代码来说明用途

#!/user/bin/env python

#coding=utf-8

from configparser import ConfigParser

from framework.logger import Logger

logger = Logger(logger="configUtil").getlog()

'''配置文件解析工具类'''

class configUtil:

def __init__(self,fileName):    '''初始化'''    try:        self.config = ConfigParser()        self.config.read(fileName,encoding='utf-8')    except:        # logger.exception('IO异常,请检查配置!')        passdef get(self,section,option):    return self.config.get(section,option)

if name == 'main':

config = configUtil(r'E:\autoTest\rcpAutoTest_20190920\config\config.ini')
print(config)
host = config.get('sitmysqlconf', 'host')
print(host)

转载于:https://blog.51cto.com/11565901/2050193

你可能感兴趣的文章
Spring ’14 Wave Update: Installing Dynamics CRM on Tablets for Windows 8.1
查看>>
MySQL 备份与恢复
查看>>
TEST
查看>>
PAT A1037
查看>>
(六)Oracle学习笔记—— 约束
查看>>
[Oracle]如何在Oracle中设置Event
查看>>
top.location.href和localtion.href有什么不同
查看>>
02-创建hibernate工程
查看>>
Gradle之module间依赖版本同步
查看>>
java springcloud版b2b2c社交电商spring cloud分布式微服务(十五)Springboot整合RabbitMQ...
查看>>
10g手动创建数据库
查看>>
Windwos Server 2008 R2 DHCP服务
查看>>
UVa 11292 勇者斗恶龙(The Dragon of Loowater)
查看>>
d3 v4实现饼状图,折线标注
查看>>
微软的云策略
查看>>
Valid Parentheses
查看>>
性能测试之稳定性测试
查看>>
ES6的 Iterator 遍历器
查看>>
2019届高二(下)半期考试题(文科)
查看>>
nginx 301跳转到带www域名方法rewrite(转)
查看>>