scrapy启动
Posted ellisonzhang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scrapy启动相关的知识,希望对你有一定的参考价值。
创建项目
scrapy startproject scrapytest
第一种
scrapy genspider example example.com
第二种
scrapy genspider -t crawl example example.com
?
from scrapy.cmdline import execute
import sys
import os
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
execute([‘scrapy‘,‘crawl‘,‘example‘])
#example 为上图中的name
LOG_LEVEL = ‘INFO‘
LOG_ENABLED=False
以上是关于scrapy启动的主要内容,如果未能解决你的问题,请参考以下文章