requests如何使用socket5代理

第一步 按照sock组件

python

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'))
展开剩余53%