scrapy shell
说明
scrapy shell [url|file]
Interactive console for scraping the given url or file. Use ./file.html syntax
or full path for local file.
常用变量(对象和函数)
request
最近一次下载对应的Request对象
response
最近一次下载对应的response对象
fetch(req-or-url)
该函数用于下载页面,可传入一个Request对象或url字符串,调用后会更新变量request和response
view(response)
该函数用于在浏览器中显示response中的页面
来源:CSDN
作者:Z_sam
链接:https://blog.csdn.net/u010553139/article/details/104374336