爬取淘宝商品评论的代码
时间: 2023-10-31 11:06:12 浏览: 86
Python淘宝评论爬取
爬取淘宝商品评论的代码需要使用Python的requests和BeautifulSoup库。以下是一个简单的爬取淘宝商品评论的代码示例:
```
import requests
from bs4 import BeautifulSoup
url = 'https://rate.tmall.com/list_detail_rate.htm?itemId=xxxxx&spuId=xxxxx&sellerId=xxxxx&order=3¤tPage=1'
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')
comments = soup.find_all('div', {'class': 'tm-rate-fulltxt'})
for comment in comments:
print(comment.text.strip())
```
其中,需要将url中的xxxxx替换为对应商品的itemId、spuId和sellerId。此代码可以爬取第一页的评论,如果需要爬取更多评论,需要修改currentPage参数。同时,需要注意反爬虫机制,可能需要添加一些反反爬虫的措施。
阅读全文