Python 爬取百度音樂
Python:3.5
歡迎加入學習交流QQ群:657341423
獲取歌曲資訊
post方式
import requests
url='http://play.baidu.com/data/music/songlink'
data={'songIds':'100575177'}
r=requests.post(url,data=data)
print (r.content.decode('UTF-8'))
f=open('data.txt','w',encoding='utf-8')
f.write(r.content.decode('UTF-8'))
f.close()
通過獲取songIds即可獲得歌曲的資訊
get方式
http://tingapi.ting.baidu.com/v1/restserver/ting?method=baidu.ting.song.play&format=jsonp&songid=2498009
同樣通過獲取songIds即可獲得歌曲的資訊
爬取百度MV
import requests
url='http://music.baidu.com/playmv/554869244'
s=requests.session()
headers={'referer':'http://music.baidu.com/mv',
'user-agent':'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36',
}
r=s.get(url,headers=headers)
a=r.content.decode('UTF-8')
file_mp4=a.split('data.push')[1].split('file_link":"')[1].replace('"});','').replace(r"\\",r'').replace('\/','/').replace("\n",'').strip()
get_file=s.get(file_mp4)
f=open('data.mp4','wb')
f.write(get_file.content)
f.close()
相關文章
- 百度VIP音樂爬取
- python 爬蟲 1 爬取酷狗音樂Python爬蟲
- Python爬蟲實踐--爬取網易雲音樂Python爬蟲
- 用Python爬取網易雲音樂歌曲Python
- 如何使用 python 爬取酷我線上音樂Python
- Python爬取網易雲音樂歌單歌曲Python
- python爬蟲:瞭解JS加密爬取網易雲音樂Python爬蟲JS加密
- Python 爬蟲獲取網易雲音樂歌手資訊Python爬蟲
- 如何用Python網路爬蟲爬取網易雲音樂歌曲Python爬蟲
- Python 爬蟲QQ音樂Python爬蟲
- Python 爬蟲獲取網易雲音樂歌手歌詞Python爬蟲
- python爬取qq音樂歌手排行熱度資料Python
- Python 爬取網易雲音樂 自動安裝所需模組Python
- python3.x爬取網易雲音樂,超詳細版Python
- 【Python爬蟲實戰】使用Selenium爬取QQ音樂歌曲及評論資訊Python爬蟲
- python3.基礎爬取網易雲音樂【超詳細版】Python
- python爬取_網易雲音樂_ 姬和不如_MP3_獲取無損音源Python
- python爬取_網易雲音樂_你的姑娘 _MP3_獲取無損音源Python
- Python爬蟲實踐-網易雲音樂Python爬蟲
- 百度音樂 APIAPI
- 千千音樂 for Mac(原百度音樂播放器)Mac播放器
- python爬蟲之JS逆向某易雲音樂Python爬蟲JS
- 使用python爬取百度百科Python
- python爬蟲獲取百度熱搜Python爬蟲
- 酷狗音樂的爬取,基於python,從無到有完整教程-上:搭建環境及爬取原理講解Python
- 音樂播放器WordPress外掛 WP-Player (支援網易雲音樂, 蝦米音樂, QQ音樂, 百度音播放器
- Java爬取網易雲音樂民謠並匯入Excel分析JavaExcel
- Python爬蟲全網搜尋並下載音樂Python爬蟲
- Python爬蟲:逆向分析網易雲音樂加密引數Python爬蟲加密
- python學習值爬取百度翻譯Python
- 爬取百度貼吧實戰,python教你如何獲取Python
- Java爬蟲系列之實戰:爬取酷狗音樂網 TOP500 的歌曲Java爬蟲
- Python爬蟲如何去抓取qq音樂的歌手資料?Python爬蟲
- 利用Python網路爬蟲抓取網易雲音樂歌詞Python爬蟲
- Python 獲取網易雲音樂熱門評論Python
- Python爬取天氣資訊並語音播報Python
- Python從網易雲音樂、QQ 音樂、酷狗音樂等搜尋和下載歌曲Python
- 百度流行音樂-資源資料整合