python爬取网易云音乐专辑的所有歌曲
爬取过程分析:
1、确定要爬取专辑的url实际地址
文章图片
2、通过xpath筛选数据,找出该专辑所有歌曲的id
文章图片
3、将歌曲的id与外链地址相拼接,得到歌曲的真是下载地址
网易云音乐外链地址:https://link.hhtjim.com/
4、下载,将歌曲写入文件
【python爬取网易云音乐专辑的所有歌曲】代码如下:
# import requests
#
# url = 'https://m10.music.126.net/20190730085044/771b0fa0b18f4ff8a665512d4b868b93/yyaac/545e/065b/0e52/c4653bbfee11db0fa6039818fe9869d9.m4a'
#
# results = requests.get(url).content
# with open('./hhh.m4a','wb') as f:
#f.write(results)import requests
from lxml import etree
# 确定url地址
url = 'https://music.163.com/artist?id=44266'
base_url = 'https://link.hhtjim.com/163/'# 请求
results = requests.get(url).text#以文本方式显示
# print(results)# 筛选数据
dom = etree.HTML(results)
ids = dom.xpath('//a[contains(@href,"song")]/@href')
# print(ids)for song_id in ids:
#过滤切割
count_id = song_id.strip('/song?id=')
# 过滤$符号
if('$' in count_id )== False:
# print(count_id)
song_url = base_url + '%s'%count_id+'.mp3'
# print(song_url)
song_name = song_url.split('/')[-1]#切割url,以歌的id命名
print(song_name)
music = requests.get(song_url).content
# 写入文件
with open('./%s'%song_name,'wb') as file:
file.write(music)
推荐阅读
- python学习之|python学习之 实现QQ自动发送消息
- 逻辑回归的理解与python示例
- python自定义封装带颜色的logging模块
- 【Leetcode/Python】001-Two|【Leetcode/Python】001-Two Sum
- Python基础|Python基础 - 练习1
- Python爬虫|Python爬虫 --- 1.4 正则表达式(re库)
- 使用协程爬取网页,计算网页数据大小
- Python(pathlib模块)
- python青少年编程比赛_第十一届蓝桥杯大赛青少年创意编程组比赛细则
- Python数据分析(一)(Matplotlib使用)