Python爬虫——案例(五)

1. 爬取王者荣耀皮肤

分析思路

  • url:https://pvp.qq.com/web201605/js/herolist.json
  • url还是很容易拼接的

源代码

import os
import requests
import time

url = 'https://pvp.qq.com/web201605/js/herolist.json'
herolist = requests.get(url)

猜你喜欢

转载自blog.csdn.net/qq_29339467/article/details/104544133