用python编写酷狗音乐爬虫代码
时间: 2024-03-11 10:25:07 浏览: 106
python 代码爬虫
好的,以下是用 Python 编写的酷狗音乐爬虫代码:
```python
import requests
from bs4 import BeautifulSoup
url = 'http://www.kugou.com/yy/html/rank.html'
response = requests.get(url)
soup = BeautifulSoup(response.content, 'html.parser')
songs = soup.find_all('a', class_='pc_temp_songname')
for song in songs:
print(song.text.strip())
```
以上代码会爬取酷狗音乐排行榜页面上的歌曲名称,并逐个输出。你可以根据自己的需求对代码进行修改。
阅读全文