当前位置:网站首页>An article taught you to download cool dog music using Python web crawler
An article taught you to download cool dog music using Python web crawler
2020-11-06 20:53:00 【Python advanced】
【 One 、 Project background 】
Now listening to music software is all kinds of payment , You have to download software to listen to , When you download it , You'll be surprised to find that the song still charges , This makes Xiaobian, who has always liked white whoring, feel very sad . therefore , Xiao Bian thinks hard , Finally let me discover the mystery , Let's see .
【 Two 、 Project preparation 】
1、 Editor :Sublime Text 3
2、 Software :360 browser
【 3、 ... and 、 Project objectives 】
Download our favorite music .
【 Four 、 Project implementation 】
1、 Open the official website of cool dog music
360 The browser opens the official website of cool dog music :
You can see a very refreshing painting style , This is also my favorite place .
2、 Review element , Analysis request
open Network , Analysis request , We can see :
As can be seen from the above figure , This is the request parameter , So we can use it Requests The module makes a request to it .
3、 Simulate initiate request
We know from the website that its address is :
https://www.kugou.com/yy/html/search.html#searchType=song&searchKeyWord=%E4%B8%8D%E8%B0%93%E4%BE%A0
We can see that the only thing that really works for us is SearchKeyWord The value after the parameter , The previous search type can be filled in by default , So we can do this :
import requests
headers={
'accept': '*/*',
'accept-encoding':'gzip, deflate, br',
'accept-language': 'zh-CN,zh;q=0.9',
'cookie': 'kg_mid=ebb2de813317a791bcf7b7d3131880c4; UM_distinctid=1722ba8b22632d-07ac0227c507a7-4e4c0f20-1fa400-1722ba8b2284a1; kg_dfid=0Q0BEI47P4zf0mHYzV0SYbou; kg_dfid_collect=d41d8cd98f00b204e9800998ecf8427e; Hm_lvt_aedee6983d4cfc62f509129360d6bb3d=1590041687,1590280210,1590367138,1590367386; Hm_lpvt_aedee6983d4cfc62f509129360d6bb3d=1590367431',
'referer': 'https://www.kugou.com/yy/html/search.html',
'sec-fetch-mode': 'no-cors',
'sec-fetch-site': 'same-site',
'user-agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36'
}
aa=input(' Please enter the song name :')
data={
'callback': 'jQuery112408716317197794392_1590368232677',
'keyword':aa,
'page': '1',
'pagesize':'30',
'userid':'-1',
'clientver': '',
'platform': 'WebFilter',
'tag': 'em',
'filter': '2',
'iscorrection': '1',
'privilege_filter': '0',
'_': '1590368232679',
}
requests.get('https://www.kugou.com/yy/html/search.html',params=data,timeout=4)
This implements the simulated request , Let's verify :
As like as two peas, we can see that it has successfully printed the same address as ours .
4、 Get a list of music files
rep=requests.get('https://www.kugou.com/yy/html/search.html',params=data,timeout=5)
print(rep.url)
res=requests.get(rep.url,timeout=4)
print(res.text)
When we fill in the request address correctly , I found that the content didn't match the expectation , But ask for a batch of address pairs .
I thought it was the result :
The actual result is :
You can see that there is a big gap , Also used Json You can't get it at all , Report format error , The explanation is not a Json, It seems that this is more than QQ The music is very difficult . But what we're going to download today is audio files , So skip for a while , Whatever it is .
5、 Download audio files
We select the original track from the list that pops up after searching , Go in and listen to :
I chose the first one , Open like this , We started to operate , open Network:
We enter the suffix Mp3, Then locate the corresponding request , Then open its request result , You can see a Json result :
We will Json The results are pasted into the console , You can see that there is a paragraph about Mp3 Result , But with a little interference , Let's extract it :
So we can download cool dog songs .
【 5、 ... and 、 Project summary 】
1、 Actually , Cool dog music and QQ The music is different , Cool dog music download link better capture , You can capture it directly in its playback interface :
Simulate the request interface , It's all done .
2、 About QQ The acquisition of music , You can refer to the previous series :
3、 Need this article source code small partner , The background to reply “ Cool dog music ” Four words , Can get . Want to learn more Python Web crawler and data mining knowledge , Go to a professional website :http://pdcfighting.com/
版权声明
本文为[Python advanced]所创,转载请带上原文链接,感谢
边栏推荐
- Humor: hacker programming is actually similar to machine learning!
- 面试官: ShardingSphere 学一下吧
- 嘉宾专访|2020 PostgreSQL亚洲大会阿里云数据库专场:曾文旌
- 消息队列(MessageQueue)-分析
- 华为Mate 40 系列搭载HMS有什么亮点?
- Helping financial technology innovation and development, atfx is at the forefront of the industry
- Network security engineer Demo: the original * * is to get your computer administrator rights! [maintain]
- How to get started with new HTML5 (2)
- Python basic variable type -- list analysis
- How to play sortable JS vuedraggable to realize nested drag function of forms
猜你喜欢
JVM内存分配 -Xms128m -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=512m
How does filecoin's economic model and future value support the price of fil currency breaking through thousands
美团内部讲座|周烜:华东师范大学的数据库系统研究
PHP application docking justswap special development kit【 JustSwap.PHP ]
大数据处理黑科技:揭秘PB级数仓GaussDB(DWS) 并行计算技术
前端未來趨勢之原生API:Web Components
2020年第四届中国 BIM (数字建造)经理高峰论坛即将在杭举办
游戏开发中的新手引导与事件管理系统
大道至简 html + js 实现最朴实的小游戏俄罗斯方块
An article taught you to use HTML5 SVG tags
随机推荐
Humor: hacker programming is actually similar to machine learning!
Live broadcast preview | micro service architecture Learning Series live broadcast phase 3
CCR coin frying robot: the boss of bitcoin digital currency, what you have to know
Network security engineer Demo: the original * * is to get your computer administrator rights! [maintain]
Outsourcing is really difficult. As an outsourcer, I can't help sighing.
如何在终端启动Coda 2中隐藏的首选项?
【字节跳动 秋招岗位开放啦】Ohayoo!放学别走,我想约你做游戏!!!
jenkins安装部署过程简记
What are PLC Analog input and digital input
python100例項
How about small and medium-sized enterprises choose shared office?
The AI method put forward by China has more and more influence. Tianda et al. Mined the development law of AI from a large number of literatures
Elasticsearch Part 6: aggregate statistical query
StickEngine-架构11-消息队列(MessageQueue)
Xmppmini project details: step by step from the principle of practical XMPP technology development 4. String decoding secrets and message package
Application of restful API based on MVC
To Lianyun analysis: why is IPFs / filecoin mining so difficult?
【ElasticSearch搜索引擎】
GUI engine evaluation index
Some operations kept in mind by the front end foundation GitHub warehouse management