python 根据网易云歌曲的ID 直接下载歌曲的实例
(编辑:jimmy 日期: 2025/1/19 浏览:3 次 )
特么的,上次写了一堆,发现,原来下载网易云的歌曲根本不用这么费劲,直接用!
http://music.163.com/song/media/outer/url"htmlcode">
import requests,os,time,sys,re from scrapy.selector import Selector class wangyiyun(): def __init__(self): self.headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36', 'Referer': 'http://music.163.com/'} self.main_url='http://music.163.com/' self.session = requests.Session() self.session.headers=self.headers def get_songurls(self,playlist): '''进入所选歌单页面,得出歌单里每首歌各自的ID 形式就是“song"''' url=self.main_url+'playlist"f-hide"]/li/a/@href').extract() return songurls #所有歌曲组成的list ##['/song"//em[@class='f-ff2']/text()").extract_first() singer= '&'.join(sel.xpath("//p[@class='des s-fc4']/span/a/text()").extract()) songname=singer+'-'+song_name return str(song_id),songname def download_song(self, songurl, dir_path): '''根据歌曲url,下载mp3文件''' song_id, songname = self.get_songinfo(songurl) # 根据歌曲url得出ID、歌名 song_url = 'http://music.163.com/song/media/outer/url"text-align: center">以上这篇python 根据网易云歌曲的ID 直接下载歌曲的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
下一篇:python-Web-flask-视图内容和模板知识点西宁街