离散课上没事干,爬网易云音乐吧~

爬取网易云音乐热歌榜

import requests
from bs4 import BeautifulSoup

header = {
    'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36 Edg/80.0.361.66',
}
url = "https://music.163.com/discover/toplist?id=3778678"
response = requests.get(url, headers=header)
html = response.content
soup = BeautifulSoup(html, "html.parser")
songs = soup.find("ul", class_="f-hide").select("a")

i = 1

for song in songs:
    song_id = song['href'][9:]
    song_name = song.text
    song_down_url = "http://music.163.com/song/media/outer/url?id=" + song_id + ".mp3"
    print("第 " + str(i) + " 首歌曲:" + song_down_url)
    print("正在下载...")
    response = requests.get(song_down_url, headers=header).content
    f = open(r'F:/Python大作业/网易云音乐/'+song_name + ".mp3", 'wb')  #文件夹位置自己改
    f.write(response)
    f.close()
    print("下载完成.\n\r")
    i = i + 1

全部评论

相关推荐

牛客741287455号:别笑,可能是以前部门的大佬,被辞职了,送外面,头发都变多了。
投递美团等公司10个岗位
点赞 评论 收藏
分享
09-29 11:19
门头沟学院 Java
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务