瀏覽器打開音樂地址
http://www.htqyy.com/top/hot
?
點擊第一首歌曲,會打開新的網頁并且可以獲取 改歌曲的id,就是url中的33
在播放頁面點擊F12,打開開發者調試功能
?如下圖所示,在script腳本中可以獲取歌曲的下載數據
host:?http://f5.htqyy.com/play
id:33
mp3: 33/mp3/7
拼接地址下載url:?http://f5.htqyy.com/play/33/mp3/7
?
import requests import re import timesongIDs=[] #存放歌曲的sid songNames=[] #存放歌曲的名稱url="http://www.htqyy.com/top/hot" #歌曲列表的url#獲取音樂榜單的網頁信息 html=requests.get(url)strr=html.textpat1=r'sid="(.*?)"' #用于解析sid的正則 pat2=r'title="(.*?)" sid' #用于解析歌曲名稱的正則idList=re.findall(pat1,strr) #從爬取到的網頁內容中獲取sid titleList=re.findall(pat2,strr) #從爬取到的網頁內容中獲取歌曲名稱songIDs.extend(idList) #將sid追加到列表 songNames.extend(titleList) #將歌曲名稱追加到列表 print(idList) print(titleList)# "http://f5.htqyy.com/play9/261/mp3/7 #開始下載音頻文件 for i in range(0,len(songIDs)):# songUrl="http://f2.htqyy.com/play8/"+songIDs[i]+"/mp3/6"songUrl="http://f5.htqyy.com/play/"+songIDs[i]+"/mp3/7"songName=songNames[i]print(songUrl)#請求文件地址,獲取文件資源 data=requests.get(songUrl).contentprint("正在下載第",i+1,"首")#將文件保存到指定目錄with open("C:\\music\\{}.mp3".format(songName),"wb") as f:f.write(data)time.sleep(0.5)
最后執行log如下:
"D:\Program Files\python\python.exe" D:/Project/Program/PythonWorkspace/FullProject/python_project/useful/get_music.py
['33', '1668', '58', '261', '62', '187', '55', '1430', '329', '87', '26', '1670', '57', '3', '108', '1621', '658', '23', '541', '56']
['清晨', '安妮的仙境', '心靈雨傘', '蕩滌心靈的天籟之音', '月光下的鳳尾竹', '日晷之夢(電臺背景音樂)', '故鄉的原風景', '寬闊的海水', '時間都去哪了', '夢里水鄉', '你的微笑', '潮汐的旋律', '斯卡布羅市集(口哨曲)', '秋日私語', '牧羊曲', '太陽的后裔OST《Always》', '天空之城鋼琴曲', '寂靜之聲', '夏日香氣', '夜的鋼琴曲五']
http://f5.htqyy.com/play/33/mp3/7
正在下載第 1 首
http://f5.htqyy.com/play/1668/mp3/7
正在下載第 2 首
http://f5.htqyy.com/play/58/mp3/7
正在下載第 3 首
http://f5.htqyy.com/play/261/mp3/7
正在下載第 4 首
http://f5.htqyy.com/play/62/mp3/7
正在下載第 5 首
http://f5.htqyy.com/play/187/mp3/7
正在下載第 6 首
http://f5.htqyy.com/play/55/mp3/7
正在下載第 7 首
http://f5.htqyy.com/play/1430/mp3/7
正在下載第 8 首
http://f5.htqyy.com/play/329/mp3/7
正在下載第 9 首
http://f5.htqyy.com/play/87/mp3/7
正在下載第 10 首
http://f5.htqyy.com/play/26/mp3/7
正在下載第 11 首
http://f5.htqyy.com/play/1670/mp3/7
正在下載第 12 首
http://f5.htqyy.com/play/57/mp3/7
正在下載第 13 首
http://f5.htqyy.com/play/3/mp3/7
正在下載第 14 首
http://f5.htqyy.com/play/108/mp3/7
正在下載第 15 首
http://f5.htqyy.com/play/1621/mp3/7
正在下載第 16 首
http://f5.htqyy.com/play/658/mp3/7
正在下載第 17 首
http://f5.htqyy.com/play/23/mp3/7
正在下載第 18 首
http://f5.htqyy.com/play/541/mp3/7
正在下載第 19 首
http://f5.htqyy.com/play/56/mp3/7
正在下載第 20 首Process finished with exit code 0
下載音樂位置:
?