写这个文章只是记录下如何在requests里使用socks5
代理。主要是为了使用shadowsocks
,其实还有proxychain4
可以在命令行下面使用,不过写python
脚本的话,还是用requests
比较方便。
首先是需要升级(或安装)支持SOCKS
协议代理的requests
版本:
pip install -U 'requests[socks]'
python
脚本里添加proxies
参数:
proxies = {'http':'socks5://127.0.0.1:1080', 'https':'socks5://127.0.0.1:1080'}
就可以了:
import requests
requests.get('http://www.google.com', proxies=proxies)
另外提一下如何使用requests
下载文件:
req = requests.get(download_url, headers=headers, proxies=proxies, stream=True)
with open(file_path, 'wb') as save_file:
for chunk in req.iter_content(1024):
save_file.write(chunk)