如何用python爬取qq音乐排行榜
时间: 2024-04-28 08:25:59 浏览: 285
可以使用 Python 的 requests 库和 BeautifulSoup 库来爬取 QQ 音乐排行榜。具体步骤如下:
1. 打开 QQ 音乐排行榜页面:https://y.qq.com/n/yqq/toplist/4.html
2. 使用 requests 库发送 GET 请求获取页面内容:
```python
import requests
url = 'https://y.qq.com/n/yqq/toplist/4.html'
response = requests.get(url)
html = response.text
```
3. 使用 BeautifulSoup 库解析页面内容,获取歌曲信息:
```python
from bs4 import BeautifulSoup
soup = BeautifulSoup(html, 'html.parser')
song_list = soup.find_all('li', class_='js_song')
for song in song_list:
song_name = song.find('span', class_='songlist__songname_txt').text.strip()
singer_name = song.find('span', class_='songlist__singer').text.strip()
print(song_name, '-', singer_name)
```
以上代码会输出 QQ 音乐排行榜前 100 首歌曲的名称和歌手。你可以根据自己的需要修改代码来获取更多信息。
阅读全文