pythonは網易の雲の音楽の熱い歌の掲示の実例のコードを登ります。


まずダウンロードする曲のランキングのリンクを見つけます。ここで使うのは以下の通りです。
https://music.163.com/discover/toplist?id=3778678
保存するディレクトリを変更します。ディレクトリは先にフォルダを作成してください。例えば、私のはDディスク-360でダウンロードします。網易雲熱歌ランキングフォルダの中に保存すれば、ダウンロードが完了します。
フォルダが事前に作成されていないと、エラーが発生します。
コードの実装:

from urllib import request
from bs4 import BeautifulSoup
import re
import requests
import time


class Music(object):
  def __init__(self, baseurl, path):
    head = {
      "user-agent": "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36"
      }
    self.baseurl = baseurl
    self.headers = head
    self.path = path


  def main(self):
    html = self.askurl()
    bs4 = self.analysis(html)
    name1 = self.matching(bs4)
    self.save(name1)


  def askurl(self):
    req = request.Request(url=self.baseurl, headers=self.headers)
    response = request.urlopen(req)
    html = response.read().decode("utf-8")
    return html


  def analysis(self, html):
    soup = BeautifulSoup(html, "html.parser")
    bs4 = soup.find_all("textarea")
    bs4 = str(bs4)
    return bs4


  def matching(self, bs4):
  	rule0 = re.compile(r'"name":"(.*?)","tns":[],"alias":[]')
    name0 = re.findall(rule0, bs4)
    str = ""
    for i in name0:
      str = str + "," + i
    str = str.replace("\xa0", " ")
    rule1 = re.compile(r'jpg,(.*?),(.*?)","id":(\d*)')
    name1 = re.findall(rule1, str)
    return name1


  def save(self, name1):
    for j in name1:
      print("    :" + j[1] + " - " + j[0] + "...")
      url = "http://music.163.com/song/media/outer/url?id=" + j[2]
      content = requests.get(url=url, headers=self.headers).content
      with open(self.path + j[1] + " - " + j[0] + ".mp3", "wb") as f:
        f.write(content)
      print(j[1] + " - " + j[0] + "    。
") time.sleep(0.5) return if __name__ == "__main__": baseurl = "https://music.163.com/discover/toplist?id=3778678" # path = "D:/360 / /" # demo0 = Music(baseurl, path) demo0.main() print(" ")
コンテンツ拡張:
Python 3実戦の爬虫類は網易の雲の音楽の人気がある評論を捕らえます。

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import re
import urllib.request
import urllib.error
import urllib.parse
import json



def get_all_hotSong(): #            id
 url='http://music.163.com/discover/toplist?id=3778678' #         url
 html=urllib.request.urlopen(url).read().decode('utf8') #  url
 html=str(html) #   str
 pat1=r'<ul class="f-hide"><li><a href="/song\?id=\d*?" rel="external nofollow" rel="external nofollow" >.*</a></li></ul>' #             
 result=re.compile(pat1).findall(html) #          
 result=result[0] #  tuple      

 pat2=r'<li><a href="/song\?id=\d*?" rel="external nofollow" rel="external nofollow" >(.*?)</a></li>' #            
 pat3=r'<li><a href="/song\?id=(\d*?)" rel="external nofollow" >.*?</a></li>' #   ID        
 hot_song_name=re.compile(pat2).findall(result) #          
 hot_song_id=re.compile(pat3).findall(result) #           Id

 return hot_song_name,hot_song_id

def get_hotComments(hot_song_name,hot_song_id):
 url='http://music.163.com/weapi/v1/resource/comments/R_SO_4_' + hot_song_id + '?csrf_token=' #  url
 header={ #    
 'User-Agent':'Mozilla/5.0 (X11; Fedora; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36'
}
 #post      
 data={'params':'zC7fzWBKxxsm6TZ3PiRjd056g9iGHtbtc8vjTpBXshKIboaPnUyAXKze+KNi9QiEz/IieyRnZfNztp7yvTFyBXOlVQP/JdYNZw2+GRQDg7grOR2ZjroqoOU2z0TNhy+qDHKSV8ZXOnxUF93w3DA51ADDQHB0IngL+v6N8KthdVZeZBe0d3EsUFS8ZJltNRUJ','encSecKey':'4801507e42c326dfc6b50539395a4fe417594f7cf122cf3d061d1447372ba3aa804541a8ae3b3811c081eb0f2b71827850af59af411a10a1795f7a16a5189d163bc9f67b3d1907f5e6fac652f7ef66e5a1f12d6949be851fcf4f39a0c2379580a040dc53b306d5c807bf313cc0e8f39bf7d35de691c497cda1d436b808549acc'}
 postdata=urllib.parse.urlencode(data).encode('utf8') #    
 request=urllib.request.Request(url,headers=header,data=postdata)
 reponse=urllib.request.urlopen(request).read().decode('utf8')
 json_dict=json.loads(reponse) #  json
 hot_commit=json_dict['hotComments'] #  json      


 num=0
 fhandle=open('./song_comments','a') #    
 fhandle.write(hot_song_name+':'+'
') for item in hot_commit: num+=1 fhandle.write(str(num)+'.'+item['content']+'
') fhandle.write('
==============================================

') fhandle.close() hot_song_name,hot_song_id=get_all_hotSong() # id num=0 while num < len(hot_song_name): # print(' %d ...'%(num+1)) get_hotComments(hot_song_name[num],hot_song_id[num]) print(' %d '%(num+1)) num+=1
以上はpythonが網易の雲の音楽の熱い歌の掲示の実例のコードの詳しい内容をよじ登って、更にpythonに関して網易の雲の音楽の熱い歌の掲示の資料を取ります。