meta The initial values for the Request.meta attribute. If given, the dict passed in this parameter will be shallow copied.该参数也是字典形式 , 是为了在spider类的多个parse函数之间传递信息 , 见 知乎 。 注意Response对象也有一个它对应的Request对象 :The Request object that generated this response. This attribute is assigned in the Scrapy engine, after the response and the request have passed through all Downloader Middlewares In particular, this means that:HTTP redirections will cause the original request (to the URL before redirection) to be assigned to the redirected response (with the final URL after redirection).Response.request.url doesn’t always equal Response.urlThis attribute is only available in the spider code, and in the Spider Middlewares, but not in Downloader Middlewares (although you have the Request available there by other means) and handlers of the response_downloaded signal.But Unlike the Response.request attribute, the Response.meta attribute is propagated along redirects and retries, so you will get the original Request.meta sent from your spider.Response obejct这里仅介绍一些reponse对象的属性:
- url 即该response的来源url
- status 即该response的状态码
- headers response的响应头 , 形式为dict
- body response的相应数据体 , 形式为bytes
- request response对应的Request对象 , 对于它上文已经介绍 , 即Response.url可能不等于Reponse.request.url , 因为redirection的原因
SettingsSettings can be populated using different mechanisms, each of which having a different precedence. Here is the list of them in decreasing order of precedence:
- Command line options (most precedence)
- Settings per-spider
- Project settings module(settings.py)
- Default settings per-command
- Default global settings (less precedence)
一般我们直接在settings.py文件中对其进行修改 , 常见需要增改的有:user-agent指定 , ITEM_PIPELINES解除注释以开启pipeline功能 , LOG_LEVEL和LOG_FILE指定 , ROBOTSTXT_OBEY设为False等等 。
【Scrapy框架初探】
推荐阅读
-
刘翔峰|冯提莫做主播之前是干啥的?职业曝光后,网友:想红想疯了?
-
-
注册制▲发生了什么?科创板重挫 中小创、ST、准仙股集体大跌
-
-
-
-
-
-
#背景墙#96平简约新家,进门就被玻璃墙迷住了,极度舒适谁会不喜欢呢?
-
-
星巴克咖啡师教你一个经典咖啡做法 星巴克咖啡粉怎么煮喝
-
-
济南蚂蚁逛街济南蚂蚁逛街教育科技有限公司靠谱吗——关于做跨境电商
-
美发|小仙女们,快来Pick这几款发色,真的超美丽哦~
-
『福州新闻网』累计超12.6万,德国新增3514例新冠肺炎确诊病例
-
-
利物浦|1-0!英超1.2亿巨星爆发,3分钟闪击大黑马,安切洛蒂面露不爽
-
ig|IG获胜王思聪终于出面!两个举动引观众热议,这次没有再开阿水了
-
“不要命”的院士赵淳生:两次被查出癌症 病房内仍工作
-