amazon爬取亚马逊页面信息
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了amazon爬取亚马逊页面信息相关的知识,希望对你有一定的参考价值。
代码:
# -*- coding: cp936 -*- import requests from lxml import etree ASIN = ‘B00X4WHP5E‘ #ASIN = ‘B017R1YFEG‘ url = ‘https://www.amazon.com/dp/‘+ASIN r = requests.get(url) html = r.text tree = etree.HTML(html) #获取产品单价 span = tree.xpath("//span[@id=‘priceblock_ourprice‘]/text()") print "ASIN码:",ASIN print "单价:",span #获取产品customer reviews cus_reviewList = tree.xpath("//div[@id=‘averageCustomerReviews‘]/span/a/span[@id=‘acrCustomerReviewText‘]/text()") print "Customer Reviews:",cus_reviewList[0] #获取产品kc |
以上是关于amazon爬取亚马逊页面信息的主要内容,如果未能解决你的问题,请参考以下文章