python爬取亚马逊评论
时间: 2023-08-14 17:07:03 浏览: 220
Python实现爬取亚马逊产品评论
5星 · 资源好评率100%
你可以使用 Python 中的 Requests 和 BeautifulSoup 库来爬取亚马逊评论。以下是一个简单的示例代码:
```python
import requests
from bs4 import BeautifulSoup
def scrape_amazon_reviews(url):
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3'
}
response = requests.get(url, headers=headers)
soup = BeautifulSoup(response.text, 'html.parser')
reviews = soup.find_all('div', {'data-hook': 'review'})
for review in reviews:
rating = review.find('span', {'class': 'a-icon-alt'}).text
title = review.find('a', {'data-hook': 'review-title'}).text
body = review.find('span', {'data-hook': 'review-body'}).text
print(f'Rating: {rating}')
print(f'Title: {title}')
print(f'Body: {body}\n')
# 使用示例
scrape_amazon_reviews('https://www.amazon.com/product-reviews/B07VGRJDFY')
```
你需要替换示例代码中的 URL 参数为你要爬取评论的亚马逊商品链接。请注意,爬取网站数据时应遵守相关网站的使用条款和条件。
阅读全文