文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Python如何通过requests模块实现抓取王者荣耀全套皮肤

2023-06-25 12:06

关注

这篇文章主要为大家展示了“Python如何通过requests模块实现抓取王者荣耀全套皮肤”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“Python如何通过requests模块实现抓取王者荣耀全套皮肤”这篇文章吧。

开发工具

Python版本: 3.6.4

相关模块:

requests模块;

urllib模块;

以及一些Python自带的模块。

环境搭建

安装Python并添加到环境变量,pip安装需要的相关模块即可。

思路分析

打开官方王者荣耀壁纸网站
网站地址:https://pvp.qq.com/web201605/wallpaper.shtml

快捷键F12,调出控制台进行抓包

Python如何通过requests模块实现抓取王者荣耀全套皮肤

找到正确的链接并分析

Python如何通过requests模块实现抓取王者荣耀全套皮肤

查看返回数据格式

Python如何通过requests模块实现抓取王者荣耀全套皮肤

Python如何通过requests模块实现抓取王者荣耀全套皮肤

解析url链接

Python如何通过requests模块实现抓取王者荣耀全套皮肤

查看url内容是否是所需图片,发现其实是缩略图

Python如何通过requests模块实现抓取王者荣耀全套皮肤

那就去分析网站,随便点开一张壁纸,查看指定格式的链接

Python如何通过requests模块实现抓取王者荣耀全套皮肤

找到目标地址

Python如何通过requests模块实现抓取王者荣耀全套皮肤

分析目标链接和缩略图的链接区别
缩略图:http://shp.qpic.cn/ishow/2735090714/1599460171_84828260_8311_sProdImgNo_6.jpg/200

目标图:http://shp.qpic.cn/ishow/2735090714/1599460171_84828260_8311_sProdImgNo_6.jpg/0

可以知道,将指定格式的缩略图地址后面200替换成0就是目标真实图片

代码实现

import os, time, requests, json, refrom retrying import retryfrom urllib import parse class HonorOfKings:    '''     This is a main Class, the file contains all documents.     One document contains paragraphs that have several sentences     It loads the original file and converts the original file to new content     Then the new content will be saved by this class    '''    def __init__(self, save_path='./heros'):        self.save_path = save_path        self.time = str(time.time()).split('.')        self.url = 'https://apps.game.qq.com/cgi-bin/ams/module/ishow/V1.0/query/workList_inc.cgi?activityId=2735&sVerifyCode=ABCD&sDataType=JSON&iListNum=20&totalpage=0&page={}&iOrder=0&iSortNumClose=1&iAMSActivityId=51991&_everyRead=true&iTypeId=2&iFlowId=267733&iActId=2735&iModuleId=2735&_=%s' % self.time[0]     def hello(self):        '''        This is a welcome speech        :return: self        '''        print("*" * 50)        print(' ' * 18 + '王者荣耀壁纸下载')        print(' ' * 5 + '作者: Felix  Date: 2020-05-20 13:14')        print("*" * 50)        return self     def run(self):        '''        The program entry        '''        print('↓' * 20 + ' 格式选择: ' + '↓' * 20)        print('1.缩略图 2.1024x768 3.1280x720 4.1280x1024 5.1440x900 6.1920x1080 7.1920x1200 8.1920x1440')        size = input('请输入您想下载的格式序号,默认6:')        size = size if size and int(size) in [1,2,3,4,5,6,7,8] else 6         print('---下载开始...')        page = 0        offset = 0        total_response = self.request(self.url.format(page)).text        total_res = json.loads(total_response)        total_page = --int(total_res['iTotalPages'])        print('---总共 {} 页...' . format(total_page))        while True:            if offset > total_page:                break            url = self.url.format(offset)            response = self.request(url).text            result = json.loads(response)            now = 0            for item in result["List"]:                now += 1                hero_name = parse.unquote(item['sProdName']).split('-')[0]                hero_name = re.sub(r'[【】:.<>|·@#$%^&() ]', '', hero_name)                print('---正在下载第 {} 页 {} 英雄 进度{}/{}...' . format(offset, hero_name, now, len(result["List"])))                hero_url = parse.unquote(item['sProdImgNo_{}'.format(str(size))])                save_path = self.save_path + '/' + hero_name                save_name = save_path + '/' + hero_url.split('/')[-2]                if not os.path.exists(save_path):                    os.makedirs(save_path)                if not os.path.exists(save_name):                    with open(save_name, 'wb') as f:                        response_content = self.request(hero_url.replace("/200", "/0")).content                        f.write(response_content)            offset += 1        print('---下载完成...')     @retry(stop_max_attempt_number=3)    def request(self, url):        '''        Send a request        :param url: the url of request        :param timeout: the time of request        :return: the result of request        '''        response = requests.get(url, timeout=10)        assert response.status_code == 200        return response if __name__ == "__main__":    HonorOfKings().hello().run()

本期完整源代码可以私信获取

代码运行结果

Python如何通过requests模块实现抓取王者荣耀全套皮肤

Python如何通过requests模块实现抓取王者荣耀全套皮肤

以上是“Python如何通过requests模块实现抓取王者荣耀全套皮肤”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网行业资讯频道!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯