gpt4 book ai didi

python - 如何通过 SOCKS 代理使 python 请求工作

转载 作者:太空宇宙 更新时间:2023-11-03 20:14:06 25 4
gpt4 key购买 nike

我正在使用伟大的Requests我的 Python 脚本中的库:

import requests
r = requests.get("http://example.com")
print(r.text)

我想使用 SOCKS 代理,我该怎么做? Requests 似乎只支持 HTTP 代理。

最佳答案

现代方式:

pip install -U 'requests[socks]'

然后

import requests

resp = requests.get('http://go.to',
proxies=dict(http='socks5://user:pass@host:port',
https='socks5://user:pass@host:port'))

关于python - 如何通过 SOCKS 代理使 python 请求工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58565360/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com