最佳答案
我在 Python 脚本中使用了很棒的 请求库:
import requests
r = requests.get("http://example.com")
print(r.text)
我想使用一个 SOCKS 代理,我如何能做到这一点? 请求似乎只支持 HTTP 代理。