爬取qq音乐排行榜代码
时间: 2023-10-05 11:08:07 浏览: 286
以下是爬取 QQ 音乐排行榜的 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.3'}
# 发送请求,并获取响应
url = 'https://y.qq.com/n/yqq/toplist/4.html'
response = requests.get(url, headers=headers)
html = response.text
# 解析 HTML
soup = BeautifulSoup(html, 'html.parser')
song_list = soup.select('.songlist__songname_txt')
# 输出歌曲名
for song in song_list:
print(song.text)
```
该代码将输出 QQ 音乐巅峰榜的前十名歌曲名。你可以根据自己的需求修改代码,例如获取更多的歌曲名或其他排行榜的歌曲。
相关问题
Python爬取QQ音乐排行榜的代码
好的,这个问题可以回答。以下是Python爬取QQ音乐排行榜的代码:
```python
import requests
from bs4 import BeautifulSoup
# 发送请求,获取HTML页面内容
url = "https://y.qq.com/n/yqq/toplist/4.html"
response = requests.get(url)
html = response.text
# 用BeautifulSoup解析页面内容
soup = BeautifulSoup(html, "html.parser")
song_list = soup.find_all("li", class_="js_song")
# 遍历歌曲信息,提取歌曲名字和演唱者
for song in song_list:
song_name = song.find("div", class_="songname").text.strip()
singer = song.find("div", class_="singer").text.strip()
print(song_name, "-", singer)
```
希望能帮到你!
python爬取qq音乐排行榜
你可以使用Python中的requests库和BeautifulSoup库来爬取QQ音乐的排行榜。下面是一个简单的示例代码:
```python
import requests
from bs4 import BeautifulSoup
url = 'https://y.qq.com/n/yqq/toplist/4.html' # QQ音乐巅峰榜
# 发送GET请求并获取网页内容
response = requests.get(url)
html = response.text
# 使用BeautifulSoup解析网页内容
soup = BeautifulSoup(html, 'html.parser')
song_list = soup.
阅读全文