【Python_requests学习笔记】requests模块中proxies参数用法
import requests
# 设置代理服务器
proxies = {
'http': 'http://10.10.1.10:3128',
'https': 'http://10.10.1.10:2080',
}
# 通过代理发送请求
response = requests.get('http://example.org', proxies=proxies)
# 打印响应内容
print(response.text)
这段代码展示了如何在使用requests模块发送HTTP请求时,通过proxies
参数设置代理服务器,并发送一个GET请求到http://example.org
。代理服务器的地址和端口分别对应HTTP和HTTPS协议。代码中还包含了如何打印响应内容的简单示例。
评论已关闭