【python爬虫】scrapy入门6:Scrapy中runspider和crawl的区别

runspider:不依赖创建项目

命令:scrapy runspider myspider.py  等同于  pyhton myspider.py

crawl:使用spider进行爬取,依赖项目创建

命令:scrapy crawl myspider

更多命令行工具:https://scrapy-chs.readthedocs.io/zh_CN/latest/topics/commands.html

------------------

转载链接:https://blog.csdn.net/mouday/article/details/88549031

相关推荐