写一个爬取京东预制菜商品评论的python代码
时间: 2024-01-02 07:03:12 浏览: 122
好的,以下是一个简单的爬取京东预制菜商品评论的 Python 代码:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://club.jd.com/comment/productPageComments.action?productId=100011082319&score=0&sortType=5&page=0&pageSize=10'
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.select('.comment-con')
for comment in comments:
print(comment.get_text().strip())
```
请注意,这只是一个简单的示例代码,需要根据实际情况进行修改和优化。另外,如果您需要爬取大量数据,建议您先阅读相关网站的爬虫规则,并遵守法律法规。
阅读全文