码迷,mamicode.com
首页 > 其他好文 > 详细

创建CrawlSpider爬虫简要步骤

时间:2018-08-21 19:01:41      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:code   pre   限制   pipe   spi   回调   文件中   函数   start   

创建CrawlSpider爬虫简要步骤:

1. 创建项目文件:

e.g: scrapy startproject douyu (douyu为项目名自定义)

 

2. 进入项目文件:

e.g: cd douyu/  => cd douyu/ (两次)

 

3. 修改items.py文件中需要获取的字段:

e.g: vim items.py  =>  name = scrapy.Field()

 

4. 进入爬虫文件:

e.g: cd spider/

 

5. 创建爬虫:

e.g: scrapy genspider -t crawl dy douyu.com (dy为爬虫名,不要和项目名一致;douyu.com为限制爬虫范围)

 

6. 修改dy.py

7. 修改管道文件pipelines.py

8. 设置settings.py

e.g: 优先级设置等

9. 运行命令:

e.g: scrapy crawl dy

 

 

注: 默认的Rules规则中,follow为True,如若跟进,可省略不写;当有callback回调函数时,不写follow,默认follow为True

 

创建CrawlSpider爬虫简要步骤

标签:code   pre   限制   pipe   spi   回调   文件中   函数   start   

原文地址:https://www.cnblogs.com/fwl8888/p/9513152.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!