吾爱破解 - LCG - LSG |安卓破解|病毒分析|www.52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 4316|回复: 28
收起左侧

[Python 转载] 爬取某音乐网站里面的某板块

[复制链接]
lz270978971 发表于 2019-10-22 09:26
本代码只作用学习交流使用
[Python] 纯文本查看 复制代码
# -*- coding: utf-8 -*-
# [url=home.php?mod=space&uid=238618]@Time[/url]    : 2019/10/21 3:46 PM
# [url=home.php?mod=space&uid=686208]@AuThor[/url]  : python-小智!!
# @FileName: qq_music.py
# @Software: IntelliJ IDEA

from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from tqdm import tqdm
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
import re
import json
import requests
import os


class QqMusic:
    def __init__(self):
        # 设置 chrome 无界面化模式
        self.chrome_options = Options()
        self.chrome_options.add_argument('--headless')
        self.chrome_options.add_argument('--disable-gpu')
        chrome_driver = "/Users/xiaozhi/Downloads/chromedriver" # 指定位置
        self.header = {
        "accept": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3",
        "accept-language": "zh-CN,zh;q=0.9",
        "referer": "https://y.qq.com/n/yqq/toplist/26.html",
        "upgrade-insecure-requests": "1",
        "user-agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.90 Safari/537.36"
        }
        self.driver = webdriver.Chrome(chrome_driver, options=self.chrome_options)

    def loading_music(self):
        """
        等到列表里面的歌曲 加载完成后在处理

        # 等待元素出现在DOM
        WebDriverWait(self._driver).until(EC.presence_of_element_located((By.ID, value)))

        # 等待元素显示在页面
        WebDriverWait(self._driver,10).until(EC.visibility_of_element_located((By.NAME, value)))

        # 等待元素从页面消失
        WebDriverWait(self._driver, 10, 0.2).until_not(EC.visibility_of_element_located((By.CLASS_NAME, value))))

        # 等待页面的title显示
        WebDriverWait(self._driver, 5,0.2).until(EC.title_contains(title))

        一次查找多个元素 (这些方法会返回一个list列表):
        find_elements_by_name
        find_elements_by_xpath
        find_elements_by_link_text
        find_elements_by_partial_link_text
        find_elements_by_tag_name
        find_elements_by_class_name
        find_elements_by_css_selector
        :return:
        """
        self.driver.get("https://y.qq.com/n/yqq/toplist/26.html")
        print(self.driver.title)
        WebDriverWait(self.driver, 10).until(EC.presence_of_all_elements_located((By.CLASS_NAME, "songlist__songname_txt")))
        lists = self.driver.find_elements_by_class_name("songlist__songname_txt")
        pattern = re.compile(r"https://y.qq.com/n/yqq/song/(\S+).html") # 取出每首歌的具体链接
        for i in range(len(lists)):
            li = lists.__getitem__(i)
            a = li.find_element_by_class_name("js_song")
            href = a.get_attribute("href")
            music_name = a.get_attribute("title")
            m = pattern.match(href)
            yield m.group(1), music_name

    def cut_download_url(self):
        """
        筛选和查找下载的url
        :return:
        """
        for music_url, music_name in self.loading_music():
            data = json.dumps({"req":{"module": "CDN.SrfCdnDispatchServer", "method": "GetCdnDispatch",
                                         "param": {"guid": "3802082216", "calltype": 0, "userip": ""}
                                       },
                               "req_0": {
                                        "module": "vkey.GetVkeyServer","method":"CgiGetVkey",
                                        "param": {
                                            "guid": "3802082216","songmid": [f'{music_url}'],
                                            "songtype": [0],"uin": "0","loginflag": 1,"platform":"20"
                                        }
                                    },"comm": {"uin":0,"format":"json","ct":24,"cv":0}})
            url = "https://u.y.qq.com/cgi-bin/musicu.fcg?callback=getplaysongvkey3131073469569151&" \
                  "g_tk=5381&jsonpCallback=getplaysongvkey3131073469569151&loginUin=0&hostUin=0&" \
                  f"format=jsonp&inCharset=utf8&outCharset=utf-8¬ice=0&platform=yqq&needNewCode=0&data={data}"
            response = requests.get(url=f"{url}",
                                    headers=self.header)
            html = response.text
            # music_json = json.loads(re.findall(r'^\w+\((.*)\)$',html)[0])
            music_json = html.split("(")[1].split(")")[0]
            music_json = json.loads(music_json)
            req = music_json['req']['data']
            sip = req["sip"][-1]
            purl = music_json['req_0']['data']['midurlinfo'][0]['purl']
            url = f"{sip}{purl}"
            yield url, music_name

    def downloading(self, url, music_name):
        """
        开始下载
        :param url:
        :param music_name:
        :return:
        """
        res = requests.get(f"{url}")
        chunk_size = 1024
        # content_size = int(res.headers['content-length'])
        if not os.path.exists("qq_music"):
            os.mkdir("qq_music")
        with open(f"qq_music/{music_name}.m4a", 'wb') as f:
            #pbar = tqdm(total=int(content_size/1024))
            for data in res.iter_content(chunk_size=chunk_size):
                f.write(data)
                # pbar.update()

    def run(self):
        downloads = [x for x in self.cut_download_url()]
        pbar = tqdm(total=len(downloads))
        for num, (url, music_name) in enumerate(downloads):
            self.downloading(url, music_name)
            pbar.update()


QqMusic().run()

image.png

免费评分

参与人数 4吾爱币 +5 热心值 +4 收起 理由
苏紫方璇 + 3 + 1 欢迎分析讨论交流,吾爱破解论坛有你更精彩!
WJ1551538794 + 1 + 1 谢谢@Thanks!
llyaomo + 1 + 1 谢谢@Thanks!
wojiaoxiaocaoma + 1 我很赞同!

查看全部评分

本帖被以下淘专辑推荐:

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

alterempty 发表于 2019-10-22 11:43
  File "QqMusic.py", line 86
    "guid": "3802082216","songmid": [f'{music_url}'],
                                                  ^
SyntaxError: invalid syntax
 楼主| lz270978971 发表于 2019-10-22 14:37
alterempty 发表于 2019-10-22 11:43
File "QqMusic.py", line 86
    "guid": "3802082216","songmid": [f'{music_url}'],
                ...

我的这个是python3.7的,支持f的用法,你换成3.7的试下
zmolli775 发表于 2019-10-22 09:35
wojiaoxiaocaoma 发表于 2019-10-22 09:43
厉害啦,老铁
llyaomo 发表于 2019-10-22 09:53
厉害了,老铁,这个得顶起来
xmtt2008 发表于 2019-10-22 10:29
电脑没有 .yp 麻烦哦!!
haoren9062 发表于 2019-10-22 10:32
哥们,你能爬足彩数据吗?
不夏流年 发表于 2019-10-22 10:33
爬虫 最近低调点吧
cj13888 发表于 2019-10-22 10:34
学习借鉴一下,谢谢分享
空中的水 发表于 2019-10-22 10:53
表示看不懂,哈哈哈,请教一下怎么入门?
elroy23 发表于 2019-10-22 11:00
看不懂,纯膜拜,马化腾会不会来招你
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则 警告:本版块禁止灌水或回复与主题无关内容,违者重罚!

快速回复 收藏帖子 返回列表 搜索

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-4-23 14:02

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表