手机
当前位置:查字典教程网 >脚本专栏 >python >Python使用scrapy采集时伪装成HTTP/1.1的方法
Python使用scrapy采集时伪装成HTTP/1.1的方法
摘要:本文实例讲述了Python使用scrapy采集时伪装成HTTP/1.1的方法。分享给大家供大家参考。具体如下:添加下面的代码到setting...

本文实例讲述了Python使用scrapy采集时伪装成HTTP/1.1的方法。分享给大家供大家参考。具体如下:

添加下面的代码到 settings.py 文件

复制代码 代码如下:DOWNLOADER_HTTPCLIENTFACTORY = 'myproject.downloader.HTTPClientFactory'

保存以下代码到单独的.py文件

复制代码 代码如下:from scrapy.core.downloader.webclient import ScrapyHTTPClientFactory, ScrapyHTTPPageGetter

class PageGetter(ScrapyHTTPPageGetter):

def sendCommand(self, command, path):

self.transport.write('%s %s HTTP/1.1rn' % (command, path))

class HTTPClientFactory(ScrapyHTTPClientFactory):

protocol = PageGetter

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

【Python使用scrapy采集时伪装成HTTP/1.1的方法】相关文章:

Python httplib,smtplib使用方法

Python中使用中文的方法

Python中文件遍历的两种方法

python调用shell的方法

python中的yield使用方法

Python批量修改文件后缀的方法

Python生成pdf文件的方法

python实现网页链接提取的方法分享

Python yield使用方法示例

Python转码问题的解决方法

精品推荐
分类导航