• 【Python+爬虫】 新冠肺炎疫情实时监控可视化系统


    作者主页:IT研究室✨
    个人简介:曾从事计算机专业培训教学,擅长Java、Python、微信小程序、Golang、安卓Android等。接项目定制开发、代码讲解、答辩教学、文档编写、降重等。
    ☑文末获取源码☑
    精彩专栏推荐⬇⬇⬇
    Java项目
    Python项目
    安卓项目
    微信小程序项目

    一、开发环境

    • 开发语言:Python
    • 数据库:MySQL
    • 系统架构:B/S
    • 后端:Django
    • 前端:Vue
    • 工具:IDEA或者Eclipse,PyCharm

    二、系统功能模块

    • 角色:用户、管理员
    • 功能:
      用户
      浏览疫情数据、浏览新闻、留言交流;
      管理员
      用户管理、疫情数据管理、爬取全国实时动态数据、留言交流管理、系统管理。

    三 、系统界面展示

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

    四、部分代码设计

     # 当日详细数据
        details = []
        update_time = data_all1["lastUpdateTime"]
        data_country = data_all1["areaTree"][0]
        data_province = data_country["children"]  # 中国各省
        for pro_infos in data_province:
            province = pro_infos["name"]  # 省名
            for city_infos in pro_infos["children"]:
                city = city_infos["name"]
                # 累计确珍人数
                confirm = city_infos["total"]["confirm"]
                # 现有确诊人数
                now_confime = city_infos["total"]["nowConfirm"]
                # 新增确诊人数
                confirm_add = city_infos["today"]["confirm"]
                # 新增无症状
                wzz_add = city_infos["today"]["wzz_add"]
                if wzz_add == '':
                    wzz_add = 0
                else:
                    wzz_add = int(wzz_add)
                # 累计治愈人数
                heal = city_infos["total"]["heal"]
                # 累计死亡人数
                dead = city_infos["total"]["dead"]
                details.append([update_time, province, city, confirm, now_confime, confirm_add,wzz_add, heal, dead])
        return history, details
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
     # 判断是否执行爬虫
        res = sql_query.exSpider()
        # event表不空
        if len(res) != 0:
            dateTup = time.strptime(str(res[0][0]), "%Y-%m-%d %H:%M:%S")
            date = time.strftime("%Y-%m-%d", dateTup)
            # 当前时间
            nowTimeTup = time.localtime(time.time())
            nowDate = time.strftime("%Y-%m-%d", nowTimeTup)
            # 如果当前日期不等于event表中最后一条数据的日期
            if nowDate != date:
                # 执行爬虫
                main.run()
        # event表空,执行爬虫
        else:
            main.run()
    
        data = sql_query.getFinalData()
        dic_data = {"confirm": data[0],
                    "heal": data[1],
                    "dead": data[2],
                    "now_local_confirm": data[3],
                    "local_confirm_add": data[4],
                    "local_no_infect_add": data[5]
                    }
        # 将中间红色字体的统计数据也传到前端
        return render_template('index.html',**dic_data)
    
    # 柱状图1路由
    @app.route('/getBarData1',methods=["get","post"])
    def get_Bar_Data1():
        res = []
        province = []
        datalist = []
        for tup in sql_query.getBarData1():
            province.append(tup[0])
            datalist.append(tup[1])
        res.append(province),res.append(datalist)
        return jsonify({"data": res})
    
    # 柱状图2(动态向上滑动)路由
    @app.route('/getBarData2',methods=["get","post"])
    def get_Bar_Data2():
        res = []
        for tup in sql_query.getBarData2():
            t = time.strptime(str(tup[0]), "%Y-%m-%d %H:%M:%S")
            event_time = str(t.tm_mon) + '-' + str(t.tm_mday) + " " + str(t.tm_hour) + ":" + str(t.tm_min)
            res.append(event_time + " " + tup[1])
        return jsonify({"data": res})
    
    # 中间红色统计数据路由
    @app.route('/finalData',methods=["get","post"])
    def get_final_Data():
        data = sql_query.getFinalData()
        return jsonify({"confirm": data[0], "heal": data[1], "dead": data[2],
                        "now_local_confirm": data[3],"local_confirm_add": data[4],
                        "local_no_infect_add": data[5]})
    
    # 地图数据路由
    @app.route("/getMapData",methods=["get","post"])
    def get_Map_Data():
        # post请求参数在request.form中
        id = request.form.get("id")
        res = []
        for tup in sql_query.getMapData(id):
            res.append({"name": tup[0], "value": int(tup[1])})
        return jsonify({"data": res})
    
    # 折线图1路由
    @app.route("/getLineData1",methods=["get","post"])
    def get_Line_Data1():
        res = []
        ds = []
        heal_add = []
        dead_add = []
        for tup in sql_query.getLineData1():
            # datetime.datetime要转换为str
            t = time.strptime(str(tup[0]), "%Y-%m-%d %H:%M:%S")
            ds.append(str(t.tm_mon) + '.' + str(t.tm_mday))
            heal_add.append(tup[1])
            dead_add.append(tup[2])
        res.append(ds),res.append(heal_add),res.append(dead_add)
        return jsonify({"data": res})
    
    # 折现图2路由
    @app.route("/getLineData2",methods=["get","post"])
    def get_Line_Data2():
        res = []
        ds = []
        local_confirm_add = []
        local_no_infect_add = []
        for tup in sql_query.getLineData2():
            # datetime.datetime要转换为str
            t = time.strptime(str(tup[0]), "%Y-%m-%d %H:%M:%S")
            ds.append(str(t.tm_mon) + '.' + str(t.tm_mday))
            local_confirm_add.append(tup[1])
            local_no_infect_add.append(tup[2])
        res.append(ds),res.append(local_confirm_add),res.append(local_no_infect_add)
        return jsonify({"data": res})
    
    # 饼形图路由
    @app.route("/getPieData",methods=["get","post"])
    def get_Pie_Data():
        res = []
        for tup in sql_query.getPieData():
            res.append({"value":tup[1],"name":tup[0]})
        return jsonify({"data": res})
    
    #定时执行爬虫的路由
    @app.route("/setMessage",methods=["get","post"])
    def set_Message():
       # 执行爬虫
        try:
            main.run()
            return jsonify({"success": 200})
        except:
            return jsonify({"success": 500})
    
    
    if __name__ == '__main__':
        app.run(port=80)
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121

    五、论文参考

    在这里插入图片描述

    结语

    大家可以帮忙点赞、收藏、关注、评论啦~
    源码获取:私信我

    精彩专栏推荐⬇⬇⬇
    Java项目
    Python项目
    安卓项目
    微信小程序项目

  • 相关阅读:
    SpringBoot - @JsonFormat注解详解
    基于STM32单片机和AD9850的智能DDS函数信号发生器
    文举论金:黄金原油全面走势分析策略独家指导
    Oauth2的核心概念
    用Java写了一个类QQ界面聊天小项目,可在线聊天
    apollo源码启动服务,apollo源码分析
    云服务器搭建flink集群
    吴恩达机器学习-可选实验:使用ScikitLearn进行线性回归(Linear Regression using Scikit-Learn)
    目标检测论文解读复现之十六:基于改进YOLOv5的小目标检测算法
    信息系统项目管理师---第八章 项目质量管理
  • 原文地址:https://blog.csdn.net/2301_79456892/article/details/132792425