基本信息
源码名称:网易云音乐下载
源码大小:0.70KB
文件格式:.py
开发语言:Python
更新时间:2021-02-10
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
import requests
from lxml import etree

url = 'https://music.163.com/playlist?id=2409342460'
base_url = 'https://music.163.com/song/media/outer/url?id='

html_str = requests.get(url).text

dom = etree.HTML(html_str)
song_ids = dom.xpath('//a[contains(@href,"/song?")]/@href')
song_names = dom.xpath('//a[contains(@href,"/song?")]/text()')

for song_id,song_name in zip(song_ids,song_names):
    count_id = song_id.strip('/song?id=')

    if('$' in count_id) == False:
         mp3_url = base_url count_id '.mp3'
         print(mp3_url)
         
         mp3 = requests.get(mp3_url).content

    str = '%s.mp3'%song_name
    print(str)
    with open(str,'wb') as file:
         file.write(mp3)