Python使用scrapy采集时伪装成HTTP/1.1的方法
本文实例讲述了Python使用scrapy采集时伪装成HTTP/1.1的方法。分享给大家供大家参考。具体如下:
添加下面的代码到settings.py文件
DOWNLOADER_HTTPCLIENTFACTORY='myproject.downloader.HTTPClientFactory'
保存以下代码到单独的.py文件
fromscrapy.core.downloader.webclientimportScrapyHTTPClientFactory,ScrapyHTTPPageGetter classPageGetter(ScrapyHTTPPageGetter): defsendCommand(self,command,path): self.transport.write('%s%sHTTP/1.1\r\n'%(command,path)) classHTTPClientFactory(ScrapyHTTPClientFactory): protocol=PageGetter
希望本文所述对大家的Python程序设计有所帮助。