python爬取网易云音乐飙升榜音乐,网易云音乐-飙升榜歌曲信息爬取
时间: 2023-08-25 20:00:36 浏览: 166
详解python selenium 爬取网易云音乐歌单名
好的,可以使用Python的requests库和BeautifulSoup库来爬取网易云音乐飙升榜的歌曲信息。以下是示例代码:
```python
import requests
from bs4 import BeautifulSoup
# 请求头信息
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.36'}
# 爬取页面
url = 'https://music.163.com/discover/toplist?id=19723756'
response = requests.get(url, headers=headers)
soup = BeautifulSoup(response.text, 'html.parser')
# 解析页面
song_list = soup.find('ul', {'class': 'f-hide'}).find_all('a')
for song in song_list:
print(song.text)
```
这段代码会输出网易云音乐飙升榜的所有歌曲名称。你可以根据自己的需要进行修改和扩展。
阅读全文