python爬取音乐代码
时间: 2023-09-16 09:16:22 浏览: 83
python爬取音乐
以下是一个简单的Python爬取音乐的示例代码:
```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.3"}
# 目标网站
url = "http://www.xiami.com/chart/data?c=101&type=0&page=1&limit=100"
# 发送请求
response = requests.get(url, headers=headers)
# 解析HTML
soup = BeautifulSoup(response.text, "html.parser")
# 获取歌曲列表
song_list = soup.find_all("song")
# 遍历歌曲列表
for song in song_list:
# 获取歌曲名和歌手名
song_name = song.find("song_name").text
artist_name = song.find("artist_name").text
# 输出结果
print(song_name, "-", artist_name)
```
这段代码会爬取虾米音乐的排行榜,并输出每首歌曲的名字和歌手名字。
注意,这只是一个示例代码,实际爬取音乐需要考虑版权等问题,不建议用于商业用途。
阅读全文