Python3 urllib.request.urlretrieve如何下载文件或图片以及如何使用代理?
使用urllib.request.urlretrieve方式:
fromurllib.requestimporturlretrieve
urlretrieve("https://www.awaimai.com/wp-content/uploads/2017/09/phpinfo.png","phpinfo.png")
如果要使用代理,需要先导入:socket和httplib2.socks模块:
fromurllib.requestimporturlretrieve
importconfig
fromhttplib2importsocks
importsocket
socks.setdefaultproxy(socks.PROXY_TYPE_HTTP,"127.0.0.1",1080)
socket.socket=socks.socksocket
urlretrieve("https://www.awaimai.com/wp-content/uploads/2017/09/phpinfo.png","phpinfo.png")
参考资料:
- HowcanIuseaSOCKS4/5proxywithurllib2?