python---爬取QQ音乐

如Cookie为非vip,仅能获取非vip歌曲

1.下载包

python 复制代码
pip install jsonpath 

2.代码

python 复制代码
import os
import time
import requests
from jsonpath import jsonpath

def search_and_download_qq_music(query_text):

    headers = {
        'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0',
        'Cookie': 'you cookie here'
    }

    # 请求的链接
    # query_text = 'Black Myth wukong'
    search_url = rf'https://u.y.qq.com/cgi-bin/musicu.fcg?data={{"comm":{{"g_tk":235530277,"uin":"1152921504916411742","format":"json","inCharset":"utf-8","outCharset":"utf-8","notice":0,"platform":"h5","needNewCode":1,"ct":23,"cv":0}},"req_0":{{"method":"DoSearchForQQMusicDesktop","module":"music.search.SearchCgiService","param":{{"remoteplace":"txt.mqq.all","searchid":"64237725668973550","search_type":0,"query":"{query_text}","page_num":1,"num_per_page":20}}}}}}'

    response = requests.get(search_url)
    music_list = jsonpath(response.json(), '$..data.body.song.list')[0]
    # print(f'music_list: {music_list}')

    if not os.path.exists('Q Music'):
        os.mkdir('Q Music')

    for item in music_list:
        music_mid = jsonpath(item, '$.mid')[0]
        music_name = jsonpath(item, '$.name')[0]

        # print(f'music_name: {music_name}, music_mid: {music_mid}')

        music_data_url = rf'https://u.y.qq.com/cgi-bin/musicu.fcg?data={{"comm":{{"cv":4747474,"ct":24,"format":"json","inCharset":"utf-8","outCharset":"utf-8","notice":0,"platform":"yqq.json","needNewCode":1,"uin":"1152921504916411742","g_tk_new_20200303":1849600344,"g_tk":1849600344}},"req_9":{{"module":"vkey.GetVkeyServer","method":"CgiGetVkey","param":{{"guid":"4868259520","songmid":["{music_mid}"],"songtype":[0],"uin":"1152921504916411742","loginflag":1,"platform":"20"}}}}}}'
        music_data_response = requests.get(music_data_url)
        # print(f'music_data_response: {music_data_response.json()}')

        data_info = jsonpath(music_data_response.json(), '$..purl')[0]
        # print(f'data_info: {data_info}')

        music_url = f'https://dl.stream.qqmusic.qq.com/{data_info}'

        music_response = requests.get(music_url, headers=headers)

        with open(f'./Q Music/{music_name}.mp3', 'wb') as file:
            file.write(music_response.content)

        print(f'《{music_name}》下载成功')
        print("-" * 20)
        time.sleep(0.5)

        # break

search_and_download_qq_music("Black Myth wukong")

如果有所帮助请给个免费的赞吧~有人看才是支撑我写下去的动力!

声明:

本文仅用作学习记录和交流

相关推荐
zjy277774 小时前
c++如何实现日志文件的异步落盘功能_基于无锁队列方案【附代码】
jvm·数据库·python
Irene19914 小时前
PyCharm 大数据开发快速上手指南(类比 VSCode 、Oracle SQL Developer)
python
wang3zc4 小时前
JavaScript中函数声明位置对解析器预编译的影响
jvm·数据库·python
小白学大数据4 小时前
JS 混淆加密下的 Python 爬虫解决方案
javascript·爬虫·python
yexuhgu5 小时前
C#怎么使用Tuple元组返回多个值_C#如何简化方法返回值【基础】
jvm·数据库·python
lulu12165440785 小时前
JetBrains IDE 终极AI编程方案:CC GUI插件让Claude Code和Codex丝滑运行
java·ide·人工智能·python·ai编程
qq_414256576 小时前
JavaScript中类继承中super关键字的调用执行逻辑
jvm·数据库·python
tanis_20776 小时前
MinerU2.5-Pro 中文 PDF 识别准确率全解:OmniDocBench v1.6 权威基准数据
人工智能·python·pdf
ㄟ留恋さ寂寞6 小时前
html如何修改备注
jvm·数据库·python
2401_884454156 小时前
c++如何读取YAML格式配置文件_yaml-cpp库快速入门【详解】
jvm·数据库·python