https://shimo.im/sheets/ndJCYvkUywwYTCWJ/MODOC
1.python 历史
![](https://img.haomeiwen.com/i14018162/966680b31068084e.png)
![](https://img.haomeiwen.com/i14018162/1b09bab665cb6d05.png)
![](https://img.haomeiwen.com/i14018162/d1d1fc0118ffe081.png)
2.做什么
![](https://img.haomeiwen.com/i14018162/8b591d69cbf9643a.png)
![](https://img.haomeiwen.com/i14018162/797028ed8b780f4a.png)
![](https://img.haomeiwen.com/i14018162/bcc02c4296db9eee.png)
![](https://img.haomeiwen.com/i14018162/b07015e5f5e411ef.png)
3.抓取皮肤
![](https://img.haomeiwen.com/i14018162/555a676eda9037b2.png)
![](https://img.haomeiwen.com/i14018162/59e666f1eff9fd68.png)
![](https://img.haomeiwen.com/i14018162/5c01c64b8f950723.png)
![](https://img.haomeiwen.com/i14018162/aa05b54e68b71a34.png)
import requests
import json
import os
import time
start = time.time()
url = requests.get('http://pvp.qq.com/web201605/js/herolist.json').content
jsonFile = json.loads(url) # 提取json
x = 0 # 计数器,记录下载了多少张图片
# 创建目录
hero_dir= 'E:/pvp/'
if not os.path.exists(hero_dir):
os.mkdir(hero_dir)
try: #使用一个简单的异常处理,防止代码在运行时出现错误
for m in range(len(jsonFile) - 1):
ename = jsonFile[m]['ename'] # 编号
cname = jsonFile[m]['cname'] # 英雄名字
skinName = jsonFile[m]['skin_name'].split('|')
skinNumber = len(skinName)
# 下载图片,构造图片网址
for bigskin in range(1, skinNumber + 1):
urlPicture = 'http://game.gtimg.cn/images/yxzj/img201606/skin/hero-info/' + str(ename) + '/' + str(
ename) + '-bigskin-' + str(bigskin) + '.jpg'
picture = requests.get(urlPicture).content # 获取图片的二进制信息
with open(hero_dir + cname + "-" + skinName[bigskin - 1] + '.jpg', 'wb') as f: # 保存图片
f.write(picture)
x = x + 1
print("正在下载第" + str(x) + "张图片")
except Exception:
print()
else:
print()
![](https://img.haomeiwen.com/i14018162/8fe191ebcd53f61d.png)
![](https://img.haomeiwen.com/i14018162/0f8d1d6f0a923868.png)
4.对比
![](https://img.haomeiwen.com/i14018162/b48866569c88cf4f.png)
![](https://img.haomeiwen.com/i14018162/d37f0885ae31060f.png)
![](https://img.haomeiwen.com/i14018162/6547c7a0a9cb01bc.png)
![](https://img.haomeiwen.com/i14018162/0faa5c4847c6154b.png)
![](https://img.haomeiwen.com/i14018162/b8588799d0c64502.png)
![](https://img.haomeiwen.com/i14018162/e288c57255104dc9.png)
![](https://img.haomeiwen.com/i14018162/5173fc448a4440cf.png)
![](https://img.haomeiwen.com/i14018162/6e0a3c86e58a2feb.png)
![](https://img.haomeiwen.com/i14018162/a2e057edbda8298c.png)
![](https://img.haomeiwen.com/i14018162/9c729aaa007eafee.png)
![](https://img.haomeiwen.com/i14018162/96b3366477dc8905.png)
网友评论