爬取lol官网所有英雄照片,并存储到pysql

该篇博客介绍了如何利用Python的requests和json库从英雄联盟官网获取所有英雄的数据,并将其存储到MySQL数据库中。之后,博主展示了如何从数据库中读取数据,并下载对应的英雄图片保存到本地文件夹。整个过程包括网络请求、数据解析、数据库操作以及文件保存等步骤。
摘要由CSDN通过智能技术生成

在这里插入图片描述
在这里插入图片描述

  1. 百度英雄联盟,进入官网,在游戏资料里面找到所有英雄数据
  2. 在页面F12中network中找到hero_list.js,所有的数据都在这里面,接下来就简单了,直接放上代码

将数据储存到mysql

import requests
import json
import pymysql

url = 'https://game.gtimg.cn/images/lol/act/img/js/heroList/hero_list.js'
conn = pymysql.Connect(host='127.0.0.1', port=3306, db='xtj_1', password='xtj', user='root', charset='utf8')
cursor = conn.cursor()

resp = requests.get(url)
hero_list = json.loads(resp.text)
for i in hero_list['hero']:
    # print(i['name'],i['title'])

    x = 'https://game.gtimg.cn/images/lol/act/img/champion/' + i['alias'] + '.png'
    cursor.execute("insert into hero1(name,title,href) values(%s,%s,%s)", (i['name'], i['title'],x))
    conn.commit()

从mysql中拿出数据,在桌面上新建文件夹并保存图片

import pymysql
import requests
import os
fpath ='e:/desketop/hero/'


conn = pymysql.Connect(host='127.0.0.1',port=3306,user='root',password='xtj',charset='utf8',db='xtj_1')
cursor=conn.cursor()
cursor.execute("select href from hero1")
result =cursor.fetchall()
for i in result:
    # print(i[0])
    resp=requests.get(i[0])
    if not os.path.exists(fpath):
        os.mkdir(fpath)
        print('创建文件夹')
    if not os.path.exists(fpath + i[0].split('/')[-1]):
        with open(fpath + i[0].split('/')[-1],'wb') as f:
            f.write(resp.content)
            print('写入图片中')
    else:
        print('文件已存在')



最后看下我的结果:
在这里插入图片描述
在这里插入图片描述

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值