基于Python的Scrapy爬虫入门:代码详解

开发 后端
接下来创建一个爬虫项目,以 图虫网 为例抓取里面的图片。在顶部菜单“发现” “标签”里面是对各种图片的分类,点击一个标签,比如“美女”,网页的链接为:https://tuchong.com/tags/美女/,我们以此作为爬虫入口,分析一下该页面。

[[211654]]

一、内容分析

接下来创建一个爬虫项目,以 图虫网 为例抓取里面的图片。在顶部菜单“发现” “标签”里面是对各种图片的分类,点击一个标签,比如“美女”,网页的链接为:https://tuchong.com/tags/美女/,我们以此作为爬虫入口,分析一下该页面:

打开页面后出现一个个的图集,点击图集可全屏浏览图片,向下滚动页面会出现更多的图集,没有页码翻页的设置。Chrome右键“检查元素”打开开发者工具,检查页面源码,内容部分如下:

 

  1. <div class="content"
  2.  
  3.     <div class="widget-gallery"
  4.  
  5.         <ul class="pagelist-wrapper"
  6.  
  7.             <li class="gallery-item... 

可以判断每一个li.gallery-item是一个图集的入口,存放在ul.pagelist-wrapper下,div.widget-gallery是一个容器,如果使用 xpath 选取应该是://div[@class=”widget-gallery”]/ul/li,按照一般页面的逻辑,在li.gallery-item下面找到对应的链接地址,再往下深入一层页面抓取图片。

但是如果用类似 Postman 的HTTP调试工具请求该页面,得到的内容是:

  1. <div class="content"
  2.  
  3.     <div class="widget-gallery"></div> 
  4.  
  5. </div> 

也就是并没有实际的图集内容,因此可以断定页面使用了Ajax请求,只有在浏览器载入页面时才会请求图集内容并加入div.widget-gallery中,通过开发者工具查看XHR请求地址为:

  1. https://tuchong.com/rest/tags/美女/posts?page=1&count=20&order=weekly&before_timestamp= 

参数很简单,page是页码,count是每页图集数量,order是排序,before_timestamp为空,图虫因为是推送内容式的网站,因此before_timestamp应该是一个时间值,不同的时间会显示不同的内容,这里我们把它丢弃,不考虑时间直接从***的页面向前抓取。

请求结果为JSON格式内容,降低了抓取难度,结果如下:

  1.  
  2.   "postList": [ 
  3.  
  4.     { 
  5.  
  6.       "post_id""15624611"
  7.  
  8.       "type""multi-photo"
  9.  
  10.       "url""https://weishexi.tuchong.com/15624611/"
  11.  
  12.       "site_id""443122"
  13.  
  14.       "author_id""443122"
  15.  
  16.       "published_at""2017-10-28 18:01:03"
  17.  
  18.       "excerpt""10月18日"
  19.  
  20.       "favorites": 4052, 
  21.  
  22.       "comments": 353, 
  23.  
  24.       "rewardable"true
  25.  
  26.       "parent_comments""165"
  27.  
  28.       "rewards""2"
  29.  
  30.       "views": 52709, 
  31.  
  32.       "title""微风不燥  秋意正好"
  33.  
  34.       "image_count": 15, 
  35.  
  36.       "images": [ 
  37.  
  38.         { 
  39.  
  40.           "img_id": 11585752, 
  41.  
  42.           "user_id": 443122, 
  43.  
  44.           "title"""
  45.  
  46.           "excerpt"""
  47.  
  48.           "width": 5016, 
  49.  
  50.           "height": 3840 
  51.  
  52.         }, 
  53.  
  54.         { 
  55.  
  56.           "img_id": 11585737, 
  57.  
  58.           "user_id": 443122, 
  59.  
  60.           "title"""
  61.  
  62.           "excerpt"""
  63.  
  64.           "width": 3840, 
  65.  
  66.           "height": 5760 
  67.  
  68.         }, 
  69.  
  70.         ... 
  71.  
  72.       ], 
  73.  
  74.       "title_image"null
  75.  
  76.       "tags": [ 
  77.  
  78.         { 
  79.  
  80.           "tag_id": 131, 
  81.  
  82.           "type""subject"
  83.  
  84.           "tag_name""人像"
  85.  
  86.           "event_type"""
  87.  
  88.           "vote""" 
  89.  
  90.         }, 
  91.  
  92.         { 
  93.  
  94.           "tag_id": 564, 
  95.  
  96.           "type""subject"
  97.  
  98.           "tag_name""美女"
  99.  
  100.           "event_type"""
  101.  
  102.           "vote""" 
  103.  
  104.         } 
  105.  
  106.       ], 
  107.  
  108.       "favorite_list_prefix": [], 
  109.  
  110.       "reward_list_prefix": [], 
  111.  
  112.       "comment_list_prefix": [], 
  113.  
  114.       "cover_image_src""https://photo.tuchong.com/443122/g/11585752.webp"
  115.  
  116.       "is_favorite"false 
  117.  
  118.     } 
  119.  
  120.   ], 
  121.  
  122.   "siteList": {...}, 
  123.  
  124.   "following"false
  125.  
  126.   "coverUrl""https://photo.tuchong.com/443122/ft640/11585752.webp"
  127.  
  128.   "tag_name""美女"
  129.  
  130.   "tag_id""564"
  131.  
  132.   "url""https://tuchong.com/tags/%E7%BE%8E%E5%A5%B3/"
  133.  
  134.   "more"true
  135.  
  136.   "result""SUCCESS" 
  137.  

根据属性名称很容易知道对应的内容含义,这里我们只需关心 postlist 这个属性,它对应的一个数组元素便是一个图集,图集元素中有几项属性我们需要用到:

  • url:单个图集浏览的页面地址
  • post_id:图集编号,在网站中应该是唯一的,可以用来判断是否已经抓取过该内容
  • site_id:作者站点编号 ,构建图片来源链接要用到
  • title:标题
  • excerpt:摘要文字
  • type:图集类型,目前发现两种,一种multi-photo是纯照片,一种text是文字与图片混合的文章式页面,两种内容结构不同,需要不同的抓取方式,本例中只抓取纯照片类型,text类型直接丢弃
  • tags:图集标签,有多个
  • image_count:图片数量
  • images:图片列表,它是一个对象数组,每个对象中包含一个img_id属性需要用到

根据图片浏览页面分析,基本上图片的地址都是这种格式: https://photo.tuchong.com/{site_id}/f/{img_id}.jpg ,很容易通过上面的信息合成。

二、创建项目

  1. 进入cmder命令行工具,输入workon scrapy 进入之前建立的虚拟环境,此时命令行提示符前会出现(Scrapy) 标识,标识处于该虚拟环境中,相关的路径都会添加到PATH环境变量中便于开发及使用。
  2. 输入 scrapy startproject tuchong 创建项目 tuchong
  3. 进入项目主目录,输入 scrapy genspider photo tuchong.com 创建一个爬虫名称叫 photo (不能与项目同名),爬取 tuchong.com 域名(这个需要修改,此处先输个大概地址),的一个项目内可以包含多个爬虫

经过以上步骤,项目自动建立了一些文件及设置,目录结构如下:

  1. (PROJECT) 
  2.  
  3. │  scrapy.cfg 
  4.  
  5. │ 
  6.  
  7. └─tuchong 
  8.  
  9.     │  items.py 
  10.  
  11.     │  middlewares.py 
  12.  
  13.     │  pipelines.py 
  14.  
  15.     │  settings.py 
  16.  
  17.     │  __init__.py 
  18.  
  19.     │ 
  20.  
  21.     ├─spiders 
  22.  
  23.     │  │  photo.py 
  24.  
  25.     │  │  __init__.py 
  26.  
  27.     │  │ 
  28.  
  29.     │  └─__pycache__ 
  30.  
  31.     │          __init__.cpython-36.pyc 
  32.  
  33.     │ 
  34.  
  35.     └─__pycache__ 
  36.  
  37.             settings.cpython-36.pyc 
  38.  
  39.             __init__.cpython-36.pyc 
  • scrapy.cfg:基础设置
  • items.py:抓取条目的结构定义
  • middlewares.py:中间件定义,此例中无需改动
  • pipelines.py:管道定义,用于抓取数据后的处理
  • settings.py:全局设置
  • spiders\photo.py:爬虫主体,定义如何抓取需要的数据

三、主要代码

items.py 中创建一个TuchongItem类并定义需要的属性,属性继承自 scrapy.Field 值可以是字符、数字或者列表或字典等等:

  1. import scrapy 
  2.  
  3. class TuchongItem(scrapy.Item): 
  4.  
  5.     post_id = scrapy.Field() 
  6.  
  7.     site_id = scrapy.Field() 
  8.  
  9.     title = scrapy.Field() 
  10.  
  11.     type = scrapy.Field() 
  12.  
  13.     url = scrapy.Field() 
  14.  
  15.     image_count = scrapy.Field() 
  16.  
  17.     images = scrapy.Field() 
  18.  
  19.     tags = scrapy.Field() 
  20.  
  21.     excerpt = scrapy.Field() 
  22.  
  23.     ... 

这些属性的值将在爬虫主体中赋予。

spiders\photo.py 这个文件是通过命令 scrapy genspider photo tuchong.com 自动创建的,里面的初始内容如下:

  1. import scrapy 
  2.  
  3. class PhotoSpider(scrapy.Spider): 
  4.  
  5.     name = 'photo' 
  6.  
  7.     allowed_domains = ['tuchong.com'
  8.  
  9.     start_urls = ['http://tuchong.com/'
  10.  
  11.     def parse(self, response): 
  12.  
  13.         pass 

爬虫名 name,允许的域名 allowed_domains(如果链接不属于此域名将丢弃,允许多个) ,起始地址 start_urls 将从这里定义的地址抓取(允许多个)

函数 parse 是处理请求内容的默认回调函数,参数 response 为请求内容,页面内容文本保存在 response.body 中,我们需要对默认代码稍加修改,让其满足多页面循环发送请求,这需要重载 start_requests 函数,通过循环语句构建多页的链接请求,修改后代码如下:

  1. import scrapy, json 
  2.  
  3. from ..items import TuchongItem 
  4.  
  5. class PhotoSpider(scrapy.Spider): 
  6.  
  7.     name = 'photo' 
  8.  
  9.     # allowed_domains = ['tuchong.com'
  10.  
  11.     # start_urls = ['http://tuchong.com/'
  12.  
  13.  
  14.     def start_requests(self): 
  15.  
  16.         url = 'https://tuchong.com/rest/tags/%s/posts?page=%d&count=20&order=weekly'
  17.  
  18.         # 抓取10个页面,每页20个图集 
  19.  
  20.         # 指定 parse 作为回调函数并返回 Requests 请求对象 
  21.  
  22.         for page in range(1, 11): 
  23.  
  24.             yield scrapy.Request(url=url % ('美女', page), callback=self.parse) 
  25.  
  26.  
  27.     # 回调函数,处理抓取内容填充 TuchongItem 属性 
  28.  
  29.     def parse(self, response): 
  30.  
  31.         body = json.loads(response.body_as_unicode()) 
  32.  
  33.         items = [] 
  34.  
  35.         for post in body['postList']: 
  36.  
  37.             item = TuchongItem() 
  38.  
  39.             item['type'] = post['type'
  40.  
  41.             item['post_id'] = post['post_id'
  42.  
  43.             item['site_id'] = post['site_id'
  44.  
  45.             item['title'] = post['title'
  46.  
  47.             item['url'] = post['url'
  48.  
  49.             item['excerpt'] = post['excerpt'
  50.  
  51.             item['image_count'] = int(post['image_count']) 
  52.  
  53.             item['images'] = {} 
  54.  
  55.             # 将 images 处理成 {img_id: img_url} 对象数组 
  56.  
  57.             for img in post.get('images'''): 
  58.  
  59.                 img_id = img['img_id'
  60.  
  61.                 url = 'https://photo.tuchong.com/%s/f/%s.jpg' % (item['site_id'], img_id) 
  62.  
  63.                 item['images'][img_id] = url 
  64.  
  65.             item['tags'] = [] 
  66.  
  67.             # 将 tags 处理成 tag_name 数组 
  68.  
  69.             for tag in post.get('tags'''): 
  70.  
  71.                 item['tags'].append(tag['tag_name']) 
  72.  
  73.             items.append(item) 
  74.  
  75.         return items 

经过这些步骤,抓取的数据将被保存在 TuchongItem 类中,作为结构化的数据便于处理及保存。

前面说过,并不是所有抓取的条目都需要,例如本例中我们只需要 type=”multi_photo 类型的图集,并且图片太少的也不需要,这些抓取条目的筛选操作以及如何保存需要在pipelines.py中处理,该文件中默认已创建类 TuchongPipeline 并重载了 process_item函数,通过修改该函数只返回那些符合条件的 item,代码如下:

  1. import scrapy, json 
  2.  
  3. from ..items import TuchongItem 
  4.  
  5. class PhotoSpider(scrapy.Spider): 
  6.  
  7.     name = 'photo' 
  8.  
  9.     # allowed_domains = ['tuchong.com'
  10.  
  11.     # start_urls = ['http://tuchong.com/'
  12.  
  13.  
  14.  
  15.     def start_requests(self): 
  16.  
  17.         url = 'https://tuchong.com/rest/tags/%s/posts?page=%d&count=20&order=weekly'
  18.  
  19.         # 抓取10个页面,每页20个图集 
  20.  
  21.         # 指定 parse 作为回调函数并返回 Requests 请求对象 
  22.  
  23.         for page in range(1, 11): 
  24.  
  25.             yield scrapy.Request(url=url % ('美女', page), callback=self.parse) 
  26.  
  27.  
  28.  
  29.     # 回调函数,处理抓取内容填充 TuchongItem 属性 
  30.  
  31.     def parse(self, response): 
  32.  
  33.         body = json.loads(response.body_as_unicode()) 
  34.  
  35.         items = [] 
  36.  
  37.         for post in body['postList']: 
  38.  
  39.             item = TuchongItem() 
  40.  
  41.             item['type'] = post['type'
  42.  
  43.             item['post_id'] = post['post_id'
  44.  
  45.             item['site_id'] = post['site_id'
  46.  
  47.             item['title'] = post['title'
  48.  
  49.             item['url'] = post['url'
  50.  
  51.             item['excerpt'] = post['excerpt'
  52.  
  53.             item['image_count'] = int(post['image_count']) 
  54.  
  55.             item['images'] = {} 
  56.  
  57.             # 将 images 处理成 {img_id: img_url} 对象数组 
  58.  
  59.             for img in post.get('images'''): 
  60.  
  61.                 img_id = img['img_id'
  62.  
  63.                 url = 'https://photo.tuchong.com/%s/f/%s.jpg' % (item['site_id'], img_id) 
  64.  
  65.                 item['images'][img_id] = url 
  66.  
  67.  
  68.  
  69.             item['tags'] = [] 
  70.  
  71.             # 将 tags 处理成 tag_name 数组 
  72.  
  73.             for tag in post.get('tags'''): 
  74.  
  75.                 item['tags'].append(tag['tag_name']) 
  76.  
  77.             items.append(item) 
  78.  
  79.         return items 

当然如果不用管道直接在 parse 中处理也是一样的,只不过这样结构更清晰一些,而且还有功能更多的FilePipelines和ImagePipelines可供使用,process_item将在每一个条目抓取后触发,同时还有 open_spider 及 close_spider 函数可以重载,用于处理爬虫打开及关闭时的动作。

注意:管道需要在项目中注册才能使用,在 settings.py 中添加:

  1. ITEM_PIPELINES = { 
  2.  
  3.     'tuchong.pipelines.TuchongPipeline': 300, # 管道名称: 运行优先级(数字小优先) 
  4.  

另外,大多数网站都有反爬虫的 Robots.txt 排除协议,设置 ROBOTSTXT_OBEY = True 可以忽略这些协议,是的,这好像只是个君子协定。如果网站设置了浏览器User Agent或者IP地址检测来反爬虫,那就需要更高级的Scrapy功能,本文不做讲解。

四、运行

返回 cmder 命令行进入项目目录,输入命令:

  1. scrapy crawl photo 

终端会输出所有的爬行结果及调试信息,并在***列出爬虫运行的统计信息,例如:

  1. [scrapy.statscollectors] INFO: Dumping Scrapy stats: 
  2.  
  3. {'downloader/request_bytes': 491, 
  4.  
  5.  'downloader/request_count': 2, 
  6.  
  7.  'downloader/request_method_count/GET': 2, 
  8.  
  9.  'downloader/response_bytes': 10224, 
  10.  
  11.  'downloader/response_count': 2, 
  12.  
  13.  'downloader/response_status_count/200': 2, 
  14.  
  15.  'finish_reason''finished'
  16.  
  17.  'finish_time': datetime.datetime(2017, 11, 27, 7, 20, 24, 414201), 
  18.  
  19.  'item_dropped_count': 5, 
  20.  
  21.  'item_dropped_reasons_count/DropItem': 5, 
  22.  
  23.  'item_scraped_count': 15, 
  24.  
  25.  'log_count/DEBUG': 18, 
  26.  
  27.  'log_count/INFO': 8, 
  28.  
  29.  'log_count/WARNING': 5, 
  30.  
  31.  'response_received_count': 2, 
  32.  
  33.  'scheduler/dequeued': 1, 
  34.  
  35.  'scheduler/dequeued/memory': 1, 
  36.  
  37.  'scheduler/enqueued': 1, 
  38.  
  39.  'scheduler/enqueued/memory': 1, 
  40.  
  41.  'start_time': datetime.datetime(2017, 11, 27, 7, 20, 23, 867300)} 

主要关注ERROR及WARNING两项,这里的 Warning 其实是不符合条件而触发的 DropItem 异常。

五、保存结果

大多数情况下都需要对抓取的结果进行保存,默认情况下 item.py 中定义的属性可以保存到文件中,只需要命令行加参数 -o {filename} 即可:

  1. scrapy crawl photo -o output.json # 输出为JSON文件 
  2.  
  3. scrapy crawl photo -o output.csv  # 输出为CSV文件

注意:输出至文件中的项目是未经过 TuchongPipeline 筛选的项目,只要在 parse 函数中返回的 Item 都会输出,因此也可以在 parse 中过滤只返回需要的项目

如果需要保存至数据库,则需要添加额外代码处理,比如可以在 pipelines.py 中 process_item 后添加:

  1. ... 
  2.  
  3.     def process_item(self, item, spider): 
  4.  
  5.         ... 
  6.  
  7.         else
  8.  
  9.             print(item['url']) 
  10.  
  11.             self.myblog.add_post(item) # myblog 是一个数据库类,用于处理数据库操作 
  12.  
  13.         return item 
  14.  
  15. ... 

 

为了在插入数据库操作中排除重复的内容,可以使用 item[‘post_id’] 进行判断,如果存在则跳过。 

责任编辑:庞桂玉 来源: 36大数据
相关推荐

2018-08-08 11:40:24

ScrapyRequest网络爬虫

2021-11-08 14:38:50

框架Scrapy 爬虫

2021-11-09 09:46:09

ScrapyPython爬虫

2023-08-28 09:14:20

ScrapyPython

2017-09-16 17:45:32

数据采集Scrapy爬虫

2018-05-16 13:50:30

Python网络爬虫Scrapy

2012-07-17 09:13:14

Scrapy

2017-05-15 21:00:15

大数据Scrapy爬虫框架

2017-04-12 11:47:32

2020-08-28 11:00:16

Python爬虫命令

2023-11-29 10:16:24

ScrapyPython

2017-02-23 18:41:03

数据分析师Python网络爬虫

2021-01-08 09:07:19

Scrapy框架爬虫

2012-02-02 16:39:40

CheckBox控件源代码

2022-03-25 11:44:14

Scrapy爬虫命令

2021-05-18 13:25:28

feapder爬虫Python

2020-12-07 11:23:32

Scrapy爬虫Python

2021-04-12 07:36:15

Scrapy爬虫框架

2017-11-20 09:46:08

python爬虫Scrapy

2021-09-30 09:00:34

Scrapy网络爬虫Python
点赞
收藏

51CTO技术栈公众号