当前位置:   article > 正文

毕业设计:python新能源汽车数据分析可视化系统 Django框架 Vue框架 Echarts可视化大屏 懂车帝(源码) ✅

毕业设计:python新能源汽车数据分析可视化系统 Django框架 Vue框架 Echarts可视化大屏 懂车帝(源码) ✅

博主介绍:✌全网粉丝10W+,前互联网大厂软件研发、集结硕博英豪成立工作室。专注于计算机相关专业毕业设计项目实战6年之久,选择我们就是选择放心、选择安心毕业✌感兴趣的可以先收藏起来,点赞、关注不迷路✌

毕业设计:2023-2024年计算机毕业设计1000套(建议收藏)

毕业设计:2023-2024年最新最全计算机专业毕业设计选题汇总

1、项目介绍

技术栈:
Python语言 Django框架 vue 框架 mysql数据库 requests爬虫 Echarts可视化 懂车帝网站 HTML

2、项目界面

(1)新能源汽车数据可视化分析大屏
在这里插入图片描述

(2)后台数据管理

在这里插入图片描述

(3)注册登录界面
在这里插入图片描述

(4)用户管理
在这里插入图片描述
(5)数据爬取
在这里插入图片描述

3、项目说明

该系统的技术栈包括:

Python语言:用于数据分析与处理、爬虫、后端开发等。
Django框架:一款使用Python语言开发的Web应用程序框架,用于快速搭建后端服务。
Vue框架:一款流行的JavaScript前端框架,用于构建响应式的用户界面。
MySQL数据库:用于存储采集到的数据和分析结果。
Requests库:一款Python第三方库,用于爬取网站数据。
Echarts可视化库:一款基于JavaScript的图表库,用于创建各种类型的数据可视化图表。
HTML:用于网站前端页面的结构和布局。
懂车帝网站:作为数据源,提供新能源汽车相关的数据。
综上所述,该系统主要采用Python语言进行开发,并使用Django框架和Vue框架实现后端和前端的交互。同时,通过MySQL数据库和Requests爬虫库实现数据采集和处理,利用Echarts可视化库将分析结果以图表形式展示在网页上。

4、核心代码

from django.shortcuts import render
from django.http import JsonResponse, HttpResponse
from django.views.decorators.csrf import csrf_exempt
# Create your views here.
from .utils import getPublicData
from .utils import getCenterData
from .utils import getCenterLeftData
from .utils import getBottomLeftData
from .utils import getCenterRightData
from .utils import getCenteChangeData
from .utils import getBottomRightData
from myApp.models import User


@csrf_exempt
def login(request):
    if request.method == 'POST':
        uname = request.POST.get('username')
        pwd = request.POST.get('password')
        message = ''
        print(uname, pwd)
        try:
            user = User.objects.get(username=uname, password=pwd)
            message = '登录成功'
            print(message)
            return JsonResponse({
                'username': uname,
                'message': message
            })
        except:
            return JsonResponse({
                'message': '登录失败'
            })


@csrf_exempt
def register(request):
    if request.method == 'POST':
        uname = request.POST.get('username')
        pwd = request.POST.get('password')

        user_a = User(username=uname, password=pwd)
        user_a.save()
        message = ''
        message = '注册成功'
        return JsonResponse({
            'username': uname,
            'message': message
        })

    # return HttpResponse('注册成功')
    return JsonResponse({
                'message': '注册成功'
            })





def center(request):
    if request.method == 'GET':
        sumCar, highVolume, topCar, mostModel, mostBrand, averagePrice = getCenterData.getBaseData()
        lastSortList = getCenterData.getRollData()
        oilRate, electricRate, mixRate = getCenterData.getTypeRate()
        return JsonResponse({
            'sumCar': sumCar,
            'highVolume': highVolume,
            'topCar': topCar,
            'mostModel': mostModel,
            'mostBrand': mostBrand,
            'averagePrice': averagePrice,
            'lastSortList': lastSortList,
            'oilRate': oilRate,
            'electricRate': electricRate,
            'mixRate': mixRate
        })


def centerLeft(request):
    if request.method == 'GET':
        lastPieList = getCenterLeftData.getPieBrandData()
        return JsonResponse({
            'lastPieList': lastPieList
        })


def bottomLeft(request):
    if request.method == 'GET':
        brandList, volumeList, priceList = getBottomLeftData.getSquareData()
        return JsonResponse({
            'brandList': brandList,
            'volumeList': volumeList,
            'priceList': priceList
        })


def centerRight(request):
    if request.method == 'GET':
        realData = getCenterRightData.getPriceSortData()
        return JsonResponse({
            'realData': realData
        })


def centerRightChange(request, energyType):
    if request.method == 'GET':
        oilData, electricDataData = getCenteChangeData.getCircleData()
        realData = []
        if energyType == 1:
            realData = oilData
        else:
            realData = electricDataData
        return JsonResponse({
            'realData': realData
        })


def bottomRight(request):
    if request.method == 'GET':
        carData = getBottomRightData.getRankData()
        return JsonResponse({
            'carData': carData
        })
  • 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
  • 122
  • 123

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/196633
推荐阅读
相关标签