300字范文,内容丰富有趣,生活中的好帮手!
300字范文 > Python爬虫:英雄联盟英雄皮肤图片

Python爬虫:英雄联盟英雄皮肤图片

时间:2023-05-25 07:28:17

相关推荐

Python爬虫:英雄联盟英雄皮肤图片

进入英雄联盟官网的英雄链接/data/info-heros.shtml,发现内容并不是储存在静态网页中,通过查看元素,找寻到了接口/images/lol/act/img/js/heroList/hero_list.js ,进行以下操作:

要求:

1、通过连接

文章目录

一、分析二、实现代码三、实现结果

一、分析

1、 /images/lol/act/img/js/heroList/hero_list.js 链接里是保存的json数据,通过json解析可以得到:

2、通过英雄id和 /images/lol/act/img/js/hero/{}.js进行拼接,这个英雄所有的皮肤的链接都保存在里面。通过json解析可以得到:

3、保存时我们以英雄的名称名字来命名文件夹,每个皮肤的图片以皮肤名称命名

二、实现代码

import requestsimport osheaders = {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36"}url = '/images/lol/act/img/js/heroList/hero_list.js'response = requests.get(url, headers=headers).json()response = response['hero']url1 = '/images/lol/act/img/js/hero/{}.js'for i in response:heroId = i['heroId']name = i['name']title = i['title']if os.path.isdir('./img/{}'.format(name+' '+title)):print('ok')else:os.mkdir('./img/{}'.format(name+' '+title))url2 = url1.format(heroId)response1 = requests.get(url2, headers=headers).json()picture_list = response1['skins']for j in picture_list:picture_url = j['mainImg']skin_name = j['name']if picture_url:response2 = requests.get(picture_url, headers=headers).contentfile = open('./img/{}/{}.jpg'.format(name+' '+title, skin_name), 'wb')file.write(response2)file.close()

三、实现结果

这里只运行一部分:

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。