当前位置 : 主页 > 编程语言 > python >

Pytest学习-python读取ini配置文件

来源:互联网 收集:自由互联 发布时间:2022-08-10
废话不罗嗦,直接上代码 [host] api_sit_url = https://api.binstd.com #!/usr/bin/env python # -*- coding: UTF-8 -*- """ @Project :Pytest @File :read_ini.py @IDE :PyCharm @Author :zhou @Date :2022/8/7 9:47 """ import config

废话不罗嗦,直接上代码

[host]
api_sit_url = https://api.binstd.com

Pytest学习-python读取ini配置文件_pytest

#!/usr/bin/env python
# -*- coding: UTF-8 -*-
"""
@Project :Pytest
@File :read_ini.py
@IDE :PyCharm
@Author :zhou
@Date :2022/8/7 9:47
"""
import configparser
import os
# 获取settings_ini文件里面的URL
path = os.path.join(os.path.dirname(os.path.dirname(os.path.realpath(__file__))), "config", "settings_ini")


def read_ini():
config = configparser.ConfigParser()
config.read(path, encoding="utf-8")
return config


print(read_ini()['host']['api_sit_url'])

Pytest学习-python读取ini配置文件_pytest_02

代码不是关键,主要是自己的一个逻辑要有

【转自:美国高防站群服务器 http://www.558idc.com/mggfzq.html 复制请保留原URL】
上一篇:Pytest学习-读取yaml和ini代码封装
下一篇:没有了
网友评论