本文目的是使用scrapy爬取京東上全部的手機數據,並將數據保存到MongoDB中。php
主要目標python
一、使用scrapy爬取京東上全部的手機數據web
二、將爬取的數據存儲到MongoDB數據庫
環境瀏覽器
win7、python2、pycharm服務器
技術app
一、數據採集:scrapydom
二、數據存儲:MongoDBscrapy
難點分析ide
和其餘的電商網站相比,京東的搜索類爬取主要有如下幾個難點:
一、搜索一個商品時,一開始顯示的商品數量爲30個,當下拉這一頁 時,又會出現30個商品,這就是60個商品了,前30個能夠直接 從原網頁上拿到,後30個卻在另外一個隱藏連接中,要訪問這兩個 連接,才能拿到一頁的全部數據。
二、隱藏連接的構造,發現最後的那個show_items字段實際上是前30 個商品的id。
三、直接反問隱藏連接被拒絕訪問,京東的服務器會檢查連接的來源, 只有來自當前頁的連接他纔會容許訪問。
四、前30個商品的那一頁的連接page字段的自增是1、3、5。。。這 樣的,然後30個的自增是2、4、6。。。這樣的。
下面看具體的分析。
首先打開京東的首頁搜索「手機」:
一開始他的地址是這樣的:
轉到第2頁,會看到,他的地址變成這樣子了:
後面的字段全變了,那麼第2頁的url明顯更容易看出信息,主要修改的字段其實就是keyword,page,其實還有一個wq字段,這個得值和keyword是同樣的。
那麼咱們就可使用第二頁的url來抓取數據,能夠看出第2頁的url中page字段爲3。
可是查看原網頁的時候卻只有30條數據,還有30條數據隱藏在一個網頁中:
從這裏面能夠看到他的Request url。
再看一下他的response:
裏面正好就是咱們須要的信息。
看一下他的參數請求:
這些參數不難以構造,一些未知的參數能夠刪掉,而那個show_items參數,其實就是前30個商品的id:
準確來講是data-pid
此時若是咱們直接在瀏覽器上訪問這個Request url,他會跳轉到https://www.jd.com/?se=deny頁面,並無咱們須要的信息,其實這個主要是請求頭中的referer參數
這個參數就是在地址欄上的那個url,固然在爬取的時候咱們還能夠加個user-agent,那麼分析完畢,咱們開始敲代碼。
建立一個scrapy爬蟲項目:
scrapy startproject jdphone
生成一個爬蟲:
scrapy genspider jd jd.com
文件結構:
items: items.py
# -*- coding: utf-8 -*-
import scrapy class JdphoneItem(scrapy.Item): # define the fields for your item here like: title = scrapy.Field() # 標題 price = scrapy.Field() # 價格 comment_num = scrapy.Field() # 評價條數 url = scrapy.Field() # 商品連接 info = scrapy.Field() # 詳細信息
spiders: jd.py
# -*- coding: utf-8 -*- import scrapy from ..items import JdphoneItem import sys reload(sys) sys.setdefaultencoding("utf-8") class JdSpider(scrapy.Spider): name = 'jd' allowed_domains = ['jd.com'] # 有的時候寫個www.jd.com會致使search.jd.com沒法爬取 keyword = "手機" page = 1 url = 'https://search.jd.com/Search?keyword=%s&enc=utf-8&qrst=1&rt=1&stop=1&vt=2&wq=%s&cid2=653&cid3=655&page=%d&click=0' next_url = 'https://search.jd.com/s_new.php?keyword=%s&enc=utf-8&qrst=1&rt=1&stop=1&vt=2&wq=%s&cid2=653&cid3=655&page=%d&scrolling=y&show_items=%s' def start_requests(self): yield scrapy.Request(self.url % (self.keyword, self.keyword, self.page), callback=self.parse) def parse(self, response): """ 爬取每頁的前三十個商品,數據直接展現在原網頁中 :param response: :return: """ ids = [] for li in response.xpath('//*[@id="J_goodsList"]/ul/li'): item = JdphoneItem() title = li.xpath('div/div/a/em/text()').extract() # 標題 price = li.xpath('div/div/strong/i/text()').extract() # 價格 comment_num = li.xpath('div/div/strong/a/text()').extract() # 評價條數 id = li.xpath('@data-pid').extract() # id ids.append(''.join(id)) url = li.xpath('div/div[@class="p-name p-name-type-2"]/a/@href').extract() # 須要跟進的連接 item['title'] = ''.join(title) item['price'] = ''.join(price) item['comment_num'] = ''.join(comment_num) item['url'] = ''.join(url) if item['url'].startswith('//'): item['url'] = 'https:' + item['url'] elif not item['url'].startswith('https:'): item['info'] = None yield item continue yield scrapy.Request(item['url'], callback=self.info_parse, meta={"item": item}) headers = {'referer': response.url} # 後三十頁的連接訪問會檢查referer,referer是就是本頁的實際連接 # referer錯誤會跳轉到:https://www.jd.com/?se=deny self.page += 1 yield scrapy.Request(self.next_url % (self.keyword, self.keyword, self.page, ','.join(ids)), callback=self.next_parse, headers=headers) def next_parse(self, response): """ 爬取每頁的後三十個商品,數據展現在一個特殊連接中:url+id(這個id是前三十個商品的id) :param response: :return: """ for li in response.xpath('//li[@class="gl-item"]'): item = JdphoneItem() title = li.xpath('div/div/a/em/text()').extract() # 標題 price = li.xpath('div/div/strong/i/text()').extract() # 價格 comment_num = li.xpath('div/div/strong/a/text()').extract() # 評價條數 url = li.xpath('div/div[@class="p-name p-name-type-2"]/a/@href').extract() # 須要跟進的連接 item['title'] = ''.join(title) item['price'] = ''.join(price) item['comment_num'] = ''.join(comment_num) item['url'] = ''.join(url) if item['url'].startswith('//'): item['url'] = 'https:' + item['url'] elif not item['url'].startswith('https:'): item['info'] = None yield item continue yield scrapy.Request(item['url'], callback=self.info_parse, meta={"item": item}) if self.page < 200: self.page += 1 yield scrapy.Request(self.url % (self.keyword, self.keyword, self.page), callback=self.parse) def info_parse(self, response): """ 連接跟進,爬取每件商品的詳細信息,全部的信息都保存在item的一個子字段info中 :param response: :return: """ item = response.meta['item'] item['info'] = {} type = response.xpath('//div[@class="inner border"]/div[@class="head"]/a/text()').extract() name = response.xpath('//div[@class="item ellipsis"]/text()').extract() item['info']['type'] = ''.join(type) item['info']['name'] = ''.join(name) for div in response.xpath('//div[@class="Ptable"]/div[@class="Ptable-item"]'): h3 = ''.join(div.xpath('h3/text()').extract()) if h3 == '': h3 = "未知" dt = div.xpath('dl/dt/text()').extract() dd = div.xpath('dl/dd[not(@class)]/text()').extract() item['info'][h3] = {} for t, d in zip(dt, dd): item['info'][h3][t] = d yield item
item pipeline: pipelines.py
# -*- coding: utf-8 -*- from scrapy.conf import settings from pymongo import MongoClient class JdphonePipeline(object): def __init__(self): # 獲取setting中主機名,端口號和集合名 host = settings['MONGODB_HOST'] port = settings['MONGODB_PORT'] dbname = settings['MONGODB_DBNAME'] col = settings['MONGODB_COL'] # 建立一個mongo實例 client = MongoClient(host=host,port=port) # 訪問數據庫 db = client[dbname] # 訪問集合 self.col = db[col] def process_item(self, item, spider): data = dict(item) self.col.insert(data) return item
setting: setting.py
# -*- coding: utf-8 -*- BOT_NAME = 'jdphone' SPIDER_MODULES = ['jdphone.spiders'] NEWSPIDER_MODULE = 'jdphone.spiders' # Crawl responsibly by identifying yourself (and your website) on the user-agent USER_AGENT = 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.62 Safari/537.36' # Obey robots.txt rules ROBOTSTXT_OBEY = True # 主機環回地址 MONGODB_HOST = '127.0.0.1' # 端口號,默認27017 MONGODB_POST = 27017 # 設置數據庫名稱 MONGODB_DBNAME = 'JingDong' # 設置集合名稱 MONGODB_COL = 'JingDongPhone' ITEM_PIPELINES = { 'jdphone.pipelines.JdphonePipeline': 300, }
其餘的文件都不作改變。
運行爬蟲:
scrapy crawl jd
等待幾分鐘後,數據都存儲到了MongoDB中了,如今來看一看MongoDB中的數據。
在命令行中開啓mongo:
看一下數據庫:
發現JingDong中有5M數據。
看一下具體狀態:
硬盤上的數據大小爲4720KB,共4902條數據
最後來看一下數據:
數據保存成功!