通过本文主要向大家介绍了python爬虫scrapy,python scrapy,python3.5 scrapy,python scrapy安装,scrapy python3等相关知识,希望对您有所帮助,也希望大家支持linkedu.com www.linkedu.com
本文实例讲述了Python使用scrapy采集时伪装成HTTP/1.1的方法。分享给大家供大家参考。具体如下:
添加下面的代码到 settings.py 文件
保存以下代码到单独的.py文件
class PageGetter(ScrapyHTTPPageGetter):
def sendCommand(self, command, path):
self.transport.write('%s %s HTTP/1.1\r\n' % (command, path))
class HTTPClientFactory(ScrapyHTTPClientFactory):
protocol = PageGetter</div>
希望本文所述对大家的Python程序设计有所帮助。
</div>
