python爬取网易云评论
时间: 2023-10-02 13:05:56 浏览: 109
你可以使用Python的requests库和BeautifulSoup库来爬取网易云音乐的评论。下面是一个简单的示例代码:
```python
import requests
from bs4 import BeautifulSoup
def get_comments(song_id):
url = f'https://music.163.com/playlist?id={song_id}'
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.182 Safari/537.36'
}
response = requests.get(url, headers=headers)
soup = BeautifulSoup(response.text, 'html.parser')
comments = []
comment_tags = soup.find_all('div', class_='cntwrap')
for comment_tag in comment_tags:
comment = comment_tag.get_text().strip()
comments.append(comment)
return comments
# 替换为你想要爬取评论的歌曲ID
song_id = '12345678'
comments = get_comments(song_id)
for comment in comments:
print(comment)
```
请注意,这只是一个简单的示例,可能无法处理一些特殊情况(例如,需要登录才能查看评论等)。在实际应用中,你可能需要进一步处理网页解析和异常情况。此外,请遵守网站的爬取规则并尊重他人的隐私。
阅读全文