废话不罗嗦,直接上代码 [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#!/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'])
代码不是关键,主要是自己的一个逻辑要有
【转自:美国高防站群服务器 http://www.558idc.com/mggfzq.html 复制请保留原URL】