【Python从入门到进阶】有关requests代理的使用
import requests
# 设置代理服务器
proxies = {
"http": "http://10.10.1.10:3128",
"https": "http://10.10.1.10:3128",
}
# 通过代理发送请求
response = requests.get("http://example.org", proxies=proxies)
# 打印响应内容
print(response.text)
这段代码演示了如何在Python中使用requests库通过代理服务器发送HTTP请求。首先,我们定义了一个代理服务器的字典proxies
,包括了HTTP和HTTPS的代理地址。然后,我们使用requests.get
方法通过代理发送了一个GET请求到http://example.org
。最后,我们打印出响应的文本内容。这是一个简单的例子,展示了如何在实际应用中使用代理。
评论已关闭