Python代码搜索并下载酷狗音乐

Posted 韩小北(韩凯)

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python代码搜索并下载酷狗音乐相关的知识,希望对你有一定的参考价值。

运行环境:

Python3.5+Pycharm

实例代码:

 

 1 import requests,re
 2 
 3 keyword = input("请输入想要听的歌曲:")
 4 url = "http://songsearch.kugou.com/song_search_v2?callback=jQuery1124006980366032059648_1518578518932&keyword="+keyword+"&page=1&pagesize=30&userid=-1&clientver=&platform=WebFilter&tag=em&filter=2&iscorrection=1&privilege_filter=0&_=1518578518934"
 5 content = requests.get(url)
 6 filehash = re.findall("FileHash":"(.*?)",content.text)[0]
 7 songname = re.findall("SongName":"(.*?)",content.text)[0].replace("<\\/em>","").replace("<em>","")
 8 
 9 hash_url = "http://www.kugou.com/yy/index.php?r=play/getdata&hash="+filehash
10 hash_content = requests.get(hash_url)
11 play_url = re.findall("play_url":"(.*?)",hash_content.text)
12 play_url = ‘‘.join(play_url)
13 real_download_url = play_url.replace("\\","")
14 
15 print("客官,请稍等一下,好音乐马上呈上!")
16 with open(songname+".mp3","wb")as fp:
17     fp.write(requests.get(real_download_url).content)

 

以上是关于Python代码搜索并下载酷狗音乐的主要内容,如果未能解决你的问题,请参考以下文章

python使用beautifulsoup4爬取酷狗音乐

酷狗客户端 怎么进不去 有网址么?

python下载酷狗音乐源码

怎么免费(兔费)下载酷狗付费的音乐

酷狗的专属格式KGM格式转换破解,急求一个

Python PyQt5 | Hi音乐 v0.1.0 正式版发布