爬取LOL官网全套高清皮肤壁纸
本帖最后由 wushaominkk 于 2018-9-17 17:14 编辑你知道LOL总共多少套皮肤吗?用python就可以轻易获取统计
拿来当桌面背景美滋滋
爬取地址:http://lol.qq.com/web201310/info-heros.shtml
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 inenumerate(linke):
name=l
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)
楼主你好,请问可以出个爬http://mzsock.com/这个网站的教程吗?谢谢了 正在爬 根本停不下来 。。不过line19 f = open('D:\\img\\{}.jpg'.format(l), 'wb') 并不会自己创建文件夹。 感谢分享 感謝分享 看標題還以為是遊戲裡面的皮膚... 这叫壁纸! 这个怎么用啊啊 楼主真是六啊,Python大法好 这个,用wegame查一下我的皮肤就知道有多少了 记得原先有个助手,更换皮肤,在文件里就存着高清图片 挺好的,谢谢分享。 不行,我不能表现出我很崇拜你的样子!绝对不可以!
页:
[1]
2