qnloft-spider/代理/proxy_info.py

11 lines
310 B
Python
Raw Permalink Normal View History

2023-11-26 12:31:18 +00:00
# 代理服务器配置信息
proxies = {
'http': 'http://proxy_server:port',
'https': 'https://proxy_server:port'
}
# 获取代理服务器的 API 函数
def get_api():
# 在这里可以编写获取代理服务器的 API 调用代码
# 返回代理服务器地址和端口
return 'proxy_api_server:port'