「自学哈网」python网易云音乐爬虫分享

也想出现在这里?
联系我们吧
# -*- codeing = utf-8 -*- # [url=home.php?mod=space&uid=238618]@Time[/url] : 2021/2/20 16:12 # [url=home.php?mod=space&uid=686208]@AuThor[/url] : 老七疯狂吸氧 # [url=home.php?mod=space&uid=267492]@file[/url] kowyy.py # @Software:PyCharm import re import requests import os import time headers = { 'User-Agent': 'Chrome/10' } def main(): print('例如:罗大佑的网址是:[url]https://music.163.com/#/artist?id=3686'[/url],'n','ID就是:3686') ID=input("请输入歌手ID:") url='https://music.163.com/artist?id='+ID html=requests.get(url,headers).text get_id(html) def get_id(html): findlink=re.compile(r'<a href="/song?id=(d*)">(.*?)</a></li><li>') findname=re.compile(r'<h2 id="artist-name" data-rid=d* class="sname f-thide sname-max" title=".*?">(.*?)</h2>') singername=re.findall(findname,html)[0] creat(singername) ll=re.findall(findlink,html) for i in ll: savemusic(i[1],i[0]) time.sleep(0.5) def creat(singername): #创建文件夹 if not os.path.exists(singername): os.mkdir(singername) # 如果该目录不存在就创建它 os.chdir(singername) def savemusic(name,id): #保存文件 url='http://music.163.com/song/media/outer/url?id='+id+'.mp3' with open(name+'.m4a','wb') as f: print('歌曲《',name,'》 下载中***************') f.write(requests.get(url=url,headers=headers).content) f.close() print("《",name,"》下载完成") print('') if __name__ == '__main__': main()
本站声明:
本站所有资源来源于网络,分享目的仅供大家学习和交流!如若本站内容侵犯了原著者的合法权益,可联系邮箱976157886@qq.com进行删除。
自学哈专注于免费提供最新的分享知识、网络教程、网络技术的资源分享平台,好资源不私藏,大家一起分享!
自学哈网 » 「自学哈网」python网易云音乐爬虫分享
本站所有资源来源于网络,分享目的仅供大家学习和交流!如若本站内容侵犯了原著者的合法权益,可联系邮箱976157886@qq.com进行删除。
自学哈专注于免费提供最新的分享知识、网络教程、网络技术的资源分享平台,好资源不私藏,大家一起分享!
自学哈网 » 「自学哈网」python网易云音乐爬虫分享

也想出现在这里?
联系我们吧