当前位置:   article > 正文

Flask+echarts实现招聘信息数据可视化_使用flask+echarts+jinja绘制“2022年广东省各大学毕业生薪酬排行”图表。

使用flask+echarts+jinja绘制“2022年广东省各大学毕业生薪酬排行”图表。

首先声明本人也是初学者如有错误欢迎指正,而且我在团队中主要负责爬虫和可视化数据清洗暂未学习我会在四月的某一天补上使用MapReduce进行数据清洗然后导入hive进行分析!这一篇主要写的是使用Blueprint对每个视图函数进行分包,基础步骤如连接数据库以及查询数据请参考我的另一篇文章(https://blog.csdn.net/qq_42844049/article/details/88364254)

思路分析
  1. 连接数据库创建session对象
  2. 创建数据库表关系映射以及创建一个查询数据库数据的方法以供调用
  3. 后台查询数据以及数据封装
  4. 前台接收
  5. 展示数据

先放上效果图(右边的导航栏是我自己写的有点丑大家不要介意0.0)
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
先看一下目录结构
在这里插入图片描述
为什么项目名叫birthday呢因为今天生日还在敲代码~~
init文件中主要是创建flask实例并注册蓝图run.py为入口文件views存放的是视图函数static存放静态文件templates存放模板
下面以柱状图为例展示项目的架构

与数据库相关的操作conn_mysql.py
from sqlalchemy import create_engine, Column, Integer, String
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import sessionmaker
from .config import *

Base = declarative_base()
engine = create_engine(CONN)
Session = sessionmaker(bind=engine)
session = Session()
class LowSalary(Base):
    __tablename__ = 'lowsalary'
    id = Column(Integer,primary_key=True,autoincrement=True)
    location = Column(String(15))
    salary = Column(Integer)

def query_data(sql):
    datas = session.execute(sql)
    return datas
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

config.py

CONN = 'mysql://root:root@127.0.0.1:3306/test?charset=utf8'
QUERY_BAR_DATA = 'select location,salary from lowsalary;'
  • 1
  • 2

柱状图需要的数据类型是一个列表详情参考echarts的官方实例(https://echarts.baidu.com/examples/editor.html?c=bar-simple)
所以我们在后台要将查询出来的数据加在一个列表中传递给前台
init.py
其他的视图函数跟这个套路完全一样也需要在这里导入然后注册否则无法显示

from flask import Flask
#创建flask实例并注册蓝图
app = Flask(__name__,static_folder='static',template_folder='templates',static_url_path='/static')
from .views.bar import bar

app.register_blueprint(bar)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

后台代码

from flask import Blueprint, render_template
from .conn.conn_mysql import *
from .conn.config import QUERY_BAR_DATA
bar = Blueprint('bar',__name__)
@bar.route('/',methods=['POST','GET'])
def show_bar():
	#query_data()方法以及其他的数据库操作我都封装在了conn_mysql中
    datas = query_data(QUERY_BAR_DATA)
    returnData = {}
    location = []
    salary = []
    for data in datas:
        location.append(data[0])
        salary.append(data[1])
    #将列表与字典的键绑定前台使用键的到列表
    returnData['location'] = location
    returnData['salary'] = salary
    return render_template('bar.html',returnData=returnData)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18

模板代码

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Bar</title>
    <script src="{{ url_for('static',filename='js/echarts.js') }}"></script>
    <script src="{{ url_for('static',filename='theme/vintage.js') }}"></script>
</head>
<body>
<div id="main" style="height: 400px;width: 600px"></div>
<script type="text/javascript">
    var myChart = echarts.init(document.getElementById('main'),'vintage');
    var option = {
        title:{
            text:'最低工资',
            x:'center'
        },
        legend:{},
        tooltip:{
            trigger:'axis'
        },
        toolbox:{
            show:true,
            feature:{
                dataView:{show:true,readOnly:false},
                magicView:{show:true,type:['bar','line']},
                restore:{show:true},
                saveAsImage:{show:true}
            }
        },
        xAxis:{
            type:'category',
            data:{{ returnData['location']|safe }},
            axisLabel:{
                rotate:20
            }
        },
        yAxis:{
            type:'value'
        },
        series:[{
            type:'bar',
            data:{{ returnData['salary']|safe }},
            markPoint:{
                data:[
                    {type:'max',name:'最大值'},
                    {type:'min',name:'最小值'}
                ]
            }
        }]
    };
    myChart.setOption(option)
</script>
</body>
</html>
  • 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

入口文件

from birthday import app

if __name__ == '__main__':
    app.run()
  • 1
  • 2
  • 3
  • 4

效果:
在这里插入图片描述
如果有需要完整项目的同学可以联系我

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

闽ICP备14008679号