使用“代理”参数配置“请求”请求时,了解值的预期格式至关重要。与直接假设相反,提供“IP:PORT”字符串是不够的。
相反,“代理”参数需要以下格式的字典:
{ "protocol1": "scheme1://ip1:port1", "protocol2": "scheme2://ip2:port2", ... }
考虑以下内容示例:
http_proxy = "http://10.10.1.10:3128" https_proxy = "https://10.10.1.11:1080" ftp_proxy = "ftp://10.10.1.10:3128" proxies = { "http": http_proxy, "https": https_proxy, "ftp": ftp_proxy } r = requests.get(url, headers=headers, proxies=proxies)
在此示例中:
或者,您可以设置环境变量来在 Linux 上配置代理,而不是使用 'proxies' 参数Windows:
Linux:
export HTTP_PROXY=10.10.1.10:3128 export HTTPS_PROXY=10.10.1.11:1080 export FTP_PROXY=10.10.1.10:3128
Windows:
set http_proxy=10.10.1.10:3128 set https_proxy=10.10.1.11:1080 set ftp_proxy=10.10.1.10:3128
以上是如何使用 Python 的'requests”模块正确配置代理?的详细内容。更多信息请关注PHP中文网其他相关文章!