首页 编程教程正文

爬取LOL官网全套高清皮肤壁纸

piaodoo 编程教程 2020-02-22 22:09:04 952 0 python教程

本文来源吾爱破解论坛

本帖最后由 wushaominkk 于 2018-9-17 17:14 编辑

你知道LOL总共多少套皮肤吗?用python就可以轻易获取统计
拿来当桌面背景美滋滋

爬取地址:http://lol.qq.com/web201310/info-heros.shtml
[Python] 纯文本查看 复制代码

import requests,re,urllib
header = { 'Host': 'c.y.qq.com','Referer': 'http://c.y.qq.com/','User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:62.0) Gecko/20100101 Firefox/62.0','Host':'lol.qq.com','Referer':'http://lol.qq.com/web201310/info-defail.shtml?id=Diana'}
url='http://lol.qq.com/web201310/js/herovideo.js'
date=requests.get(url,headers=header)
html = date.text
linke=re.findall('"(\d+(\.\d+)?)": "(.*?)"',html,re.S)
for i,l in  enumerate(linke):
   name=l[2]
   url='http://lol.qq.com/biz/hero/%s.js'%name
   da = urllib.request.Request(url, headers=header)
   da = urllib.request.urlopen(da)
   da = requests.get(url, headers=header)
   html=da.text
   html=re.findall('"skins":\[{(.*?)}\]',html,re.S)
   html=re.findall('"id":"(.*?)"',str(html),re.S)
   for l in html:
       url='http://ossweb-img.qq.com/images/lol/web201310/skin/big%s.jpg'%l
       url = requests.get(url).content
       f = open('E:\\img\\{}.jpg'.format(l), 'wb')
       f.write(url)
       f.close()
       print("%s下载成功"%l)

1.jpg (361.71 KB, 下载次数: 13)

下载附件  保存到相册

2018-9-16 15:06 上传

1.jpg

版权声明:

本站所有资源均为站长或网友整理自互联网或站长购买自互联网,站长无法分辨资源版权出自何处,所以不承担任何版权以及其他问题带来的法律责任,如有侵权或者其他问题请联系站长删除!站长QQ754403226 谢谢。

有关影视版权:本站只供百度云网盘资源,版权均属于影片公司所有,请在下载后24小时删除,切勿用于商业用途。本站所有资源信息均从互联网搜索而来,本站不对显示的内容承担责任,如您认为本站页面信息侵犯了您的权益,请附上版权证明邮件告知【754403226@qq.com】,在收到邮件后72小时内删除。本文链接:https://www.piaodoo.com/7698.html

搜索