中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

scrapy怎么追蹤python爬蟲的商品評價

發布時間:2020-11-23 15:53:47 來源:億速云 閱讀:141 作者:小新 欄目:編程語言

這篇文章主要介紹scrapy怎么追蹤python爬蟲的商品評價,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

創建一個測試的spider

scrapy genspider jdcomment01spider club.jd.com
scrapy list --查看一下

1.一些缺的數據信息探索

--人名

comment0 = response.xpath('//div[@id="comment-0"]')
print comment0.xpath('.//div[@class="item"]//div[@class="user"]//div[@class="u-name"]/text()').extract_first().replace("\r\n", '')

--獲取所有評價

一個商品的總的評價信息可以從這個URL獲取

https://club.jd.com/ProductPageService.aspx?method=GetCommentSummaryBySkuId&referenceId=1601991

 

返回的是個JSON字符串

{"SkuId":1601991,"ProductId":1601991,"Score1Count":115,"Score2Count":24,"Score3Count":77,"Score4Count":229,"Score5Count":3250,"ShowCount":311,"CommentCount":3695,"AverageScore":5,"GoodCount":3479,"GoodRate":0.942,"GoodRateShow":94,"GoodRateStyle":141,"GeneralCount":101,"GeneralRate":0.027,"GeneralRateShow":3,"GeneralRateStyle":4,"PoorCount":115,"PoorRate":0.031,"PoorRateShow":3,"PoorRateStyle":5}

具體有多少評論頁 = CommentCount/30

 其他的如Score1Count一星評論的有多少,AverageScore平均得分都很有用,下次再處理。

2.獲取所有評論數

在第一部分的基礎上修改讀取多少也即可,修改jdcomment01spider.py,代碼如下

# -*- coding: utf-8 -*-
import scrapy
from scrapy.spiders import Spider
from scrapy.selector import Selector
from tutorial.items import DmozItem
import urllib2
import math
import json
itemnum = '1601991'
commentpeypage = 30
class Jdcomment01spiderSpider(scrapy.Spider):
    name = "jdcomment01spider"
    allowed_domains = ["club.jd.com"]
    itemsummaryurl='http://club.jd.com/ProductPageService.aspx?method=GetCommentSummaryBySkuId&referenceId=' + itemnum
    itemsummaryresponse = urllib2.urlopen(url)
    itemsummaryjson_dict = json.loads(itemsummaryresponse.read())
    commentrange = int(math.ceil(itemsummaryjson_dict.get('CommentCount'))/commentpeypage)
 
    start_urls = []
    for i in range(commentrange):
        s_url = "http://club.jd.com/review/" + itemnum + "-" + str(i) + "-0.html/",
        start_urls.append(s_url)
 
    def parse(self, response):
        sel = Selector(response)
        sites = sel.xpath('//ul/li')
        items = []
        for i in range(0, commentpeypage):
            divs = response.xpath('//div[@id="' + str(i) + '"]')
            uid = divs.xpath('.//div[@class="item"]//div[@class="user"]//div[@class="u-name"]/text()').extract_first().replace("\r\n", '')
            for zz in divs.xpath('.//dl'):
                item = DmozItem()
                item['prodid'] = itemnum
                item['userid'] = 'userid'
                item['type'] = zz.xpath('.//dt/text()').extract_first().replace("\r\n", '')
                item['desc'] = zz.xpath('.//dd/text()').extract_first().replace("\r\n", '')
                items.append(item)
        return item

檢查結果

scrapy crawl jdcomment01spider -o items.json -t csv

以上是“scrapy怎么追蹤python爬蟲的商品評價”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

云安县| 稷山县| 十堰市| 栖霞市| 教育| 郯城县| 昌江| 柘城县| 色达县| 新绛县| 崇州市| 山丹县| 新巴尔虎左旗| 会昌县| 潮安县| 富顺县| 盐源县| 屏边| 屯留县| 阿勒泰市| 白沙| 阳朔县| 休宁县| 安新县| 喜德县| 兴文县| 泰顺县| 甘南县| 色达县| 绥中县| 增城市| 大城县| 松阳县| 紫金县| 乌什县| 永嘉县| 宜城市| 道孚县| 永清县| 秦皇岛市| 古蔺县|