Python基于scrapy采集数据时使用代理服务器的方法

Python基于scrapy采集数据时使用代理服务器的方法,第1张

概述本文实例讲述了Python基于scrapy采集数据时使用代理服务器的方法。分享给大家供大家参考。具体如下:

本文实例讲述了Python基于scrapy采集数据时使用代理服务器的方法。分享给大家供大家参考。具体如下:

# To authenticate the proxy,#you must set the Proxy-Authorization header. #You *cannot* use the form http://user:pass@proxy:port #in request.Meta['proxy']import base64proxy_ip_port = "123.456.789.10:8888"proxy_user_pass = "awesome:dude"request = Request(url,callback=self.parse)# Set the location of the proxyrequest.Meta['proxy'] = "http://%s" % proxy_ip_port# setup basic authentication for the proxyencoded_user_pass=base64.encodestring(proxy_user_pass)request.headers['Proxy-Authorization'] = 'Basic ' + encoded_user_pass

希望本文所述对大家的python程序设计有所帮助。

总结

以上是内存溢出为你收集整理的Python基于scrapy采集数据时使用代理服务器的方法全部内容,希望文章能够帮你解决Python基于scrapy采集数据时使用代理服务器的方法所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1203009.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存