租房数据分析可视化大屏+58同城 Django框架 大数据毕业设计(附源码)✅

news2024/11/26 13:54:27

毕业设计:2023-2024年计算机专业毕业设计选题汇总(建议收藏)

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

🍅感兴趣的可以先收藏起来,点赞、关注不迷路,大家在毕设选题,项目以及论文编写等相关问题都可以给我留言咨询,希望帮助同学们顺利毕业 。🍅

1、项目介绍

技术栈:

python租房数据分析可视化系统 毕业设计 58同城

python语言、MySQL数据库、Django框架、Echarts可视化

租房数据分析可视化系统是一个基于python语言、MySQL数据库、Django框架和Echarts可视化技术开发的系统。该系统旨在帮助用户通过对租房数据进行分析和可视化展示,提供更直观、全面的租房市场信息,以便用户做出更明智的租房决策。

2、项目界面

(1)租房数据可视化大屏
在这里插入图片描述

(2)租房数据管理
在这里插入图片描述

(3)系统首页

在这里插入图片描述

(4)租房数据条件查询

在这里插入图片描述

(5)评论功能

在这里插入图片描述

(6)租房数据

在这里插入图片描述

3、项目说明

租房数据分析可视化系统是一个基于python语言、MySQL数据库、Django框架和Echarts可视化技术开发的系统。该系统旨在帮助用户通过对租房数据进行分析和可视化展示,提供更直观、全面的租房市场信息,以便用户做出更明智的租房决策。

系统主要包括以下功能:

  1. 数据采集与存储:系统通过爬虫技术从58同城等租房网站上采集租房相关数据,并将其存储到MySQL数据库中,包括房源信息、租金、房屋面积、地理位置等各项数据。

  2. 数据清洗与处理:对采集到的数据进行清洗和处理,包括去除重复数据、处理缺失值、格式化数据等,以确保数据的准确性和一致性。

  3. 数据分析与统计:通过对租房数据进行统计和分析,提取出各种有价值的信息,包括不同城市的租金分布、租房面积分布、租房热门区域等,为用户提供全面的租房市场概况。

  4. 可视化展示:利用Echarts可视化技术,将分析结果以图表的形式展示给用户,包括柱状图、饼图、地图等,使用户更直观地了解租房市场的情况。

  5. 用户管理与权限控制:系统提供用户管理功能,包括用户注册、登录、密码找回等,同时还可以根据用户的身份和权限,控制其对系统功能的访问和使用。

通过租房数据分析可视化系统,用户可以快速了解租房市场的情况,包括租金水平、热门区域、房屋面积分布等,从而更好地选择合适的租房房源。同时,系统还可以为租房从业人员、房产中介等提供市场调研和决策支持。

4、核心代码

# -*- coding: utf-8 -*-
import random
import time
from urllib import parse
from datetime import date, datetime
from django.shortcuts import redirect
from ..common.helper import *
from ..common.vercode import *
from simple_mysql import db as mysql
import base64


# 处理时间对象序列化问题
class DateEncoder(json.JSONEncoder):
    def default(self, obj):
        if isinstance(obj, datetime):
            return obj.strftime("%Y-%m-%d %H:%I:%S")
        elif isinstance(obj, date):
            return obj.strftime("%Y-%m-%d")
        else:
            return json.JSONEncoder.default(self, obj)


def index(request):
    '''
    重定向到前端主页
    :param request:
    :return:
    '''
    return redirect('/dist/index.html')

#从前端获取传递的参数后,在数据库中查询相关信息并给出结果。
#和数据库进行交互
# 登录
def login(request):
    name = request.POST.get("username")
    password = request.POST.get("pwd")
    role = request.POST.get("role", 1)

    if request.session.get('verify') != request.POST.get("code"):
        return jsonResponse(1, '验证码错误')

    db = mysql().connection(DATABASE)
    user = db.table('user').where({"name": name, "pass": password, "role": role}).find()
    print(user)
    if user is None:
        return jsonResponse(1, '账号或者密码错误')
    else:
        timestamp = time.time()
        token = md5(str(user["id"]) + user["pass"] + str(timestamp))
        db.table('user').where({"id": user["id"]}).save({"token": token})
        data = {
            "token": token,
            "user": user
        }
        return jsonResponse(0, '登录成功', data)


# 注册
def register(request):
    name = request.POST.get("username")
    password = request.POST.get("pwd")

    if len(password) > 10 or len(password) < 6:
        return jsonResponse(1, '密码位数应大于6小于10')
    db = mysql().connection(DATABASE)
    result = db.table('user').where({"name": name}).find()

    if result:
        return jsonResponse(1, '用户名已经注册')

    user = db.table('user').add({
        "name": name,
        "pass": password,
        "role": 1
    })

    if user:
        return jsonResponse(0, '注册成功')

    return jsonResponse(1, '注册失败')


# 上传文件
def upload(request):
    content = request.FILES.get("file", None)
    file_dir = os.path.join(UPLOAD_DIR, time.strftime('%Y%m%d'))

    if not os.path.exists(file_dir):
        os.makedirs(file_dir)

    file = os.path.join(file_dir, content.name)
    storage = open(file, 'wb+')
    for chunk in content.chunks():
        storage.write(chunk)
    storage.close()
    dir = '/static/uploads/{}/{}'.format(time.strftime('%Y%m%d'), content.name)
    return jsonResponse(0, '上传成功', dir)


# 使用pillow生成验证码
def verify(request):
    code = imageCode()
    code.getVerifyCode()
    image, text = code.getVerifyCode()
    # 图片以二进制形式写入
    buf = BytesIO()
    image.save(buf, 'jpeg')
    buf_str = buf.getvalue()
    request.session['verify'] = text
    return jsonResponse(0, '验证码生成成功', {"code": str(base64.b64encode(buf_str), 'utf-8'), "value": text})


def house(request):
    if request.method == "GET":
        page = request.GET.get("page", 1)
        limit = request.GET.get("limit", 10)
        keyword = request.GET.get("keyword")
        area = request.GET.get("area")
        price = request.GET.get("price")
        room = request.GET.get("room")
        type = request.GET.get("type")

        id = request.GET.get("id")
        condition = {}
        db = mysql().connection(DATABASE)

        if keyword:
            # 解码url中文参数keyword
            condition["city"] = ["LIKE", "%{}%".format(parse.unquote_plus(keyword)), "", "e"]
        if area:
            if "以上" in area:
                condition["room_area"] = ["GT", area.replace("以上", ""), "", "e"]
            else:
                min_area = area.split("-")[0]
                max_area = area.split("-")[1].replace("㎡", "").replace("以上", "")
                condition["room_area"] = ["BETWEEN", [min_area, max_area], '', 'e']
        if price:
            if "以上" in price:
                condition["price"] = ["GT", price.replace("万", "").replace("以上", ""), "", "e"]
            else:
                min_price = price.split("-")[0]
                max_price = price.split("-")[1].replace("/月", "")
                condition["price"] = ["BETWEEN", [min_price, max_price], '', 'e']
        if room:
            condition["room"] = ["LIKE", "%{}%".format(room.replace("以上", "")), "", "e"]
        if type:
            condition["type"] = type

        if len(condition) > 0:
            count = db.table('house').where(condition).count()
            data = db.table('house').where(condition).page(page, limit).order("id desc").select()
        elif id:
            data = db.table('house').where({"id": id}).find()
            return jsonResponse(0, 'success', data)
        else:
            count = db.table('house').count()
            data = db.table('house').page(page, limit).order('id desc').select()
        return jsonResponse(0, 'success', data, count)
    elif request.method == "POST":
        pass
    elif request.method == "PUT":
        pass
    elif request.method == "DELETE":
        # 删除数据
        db = mysql().connection(DATABASE)
        id = request.GET.get("id")
        result = db.table('house').where({"id": id}).delete()
        if result:
            return jsonResponse(0, '删除成功')
        return jsonResponse(1, '删除失败')


def news(request):
    db = mysql().connection(DATABASE)
    if request.method == "GET":
        page = request.GET.get("page", 1)
        limit = request.GET.get("limit", 10)
        keyword = request.GET.get("keyword")
        id = request.GET.get("id")
        category = request.GET.get("category")
        condition = {}
        db = mysql().connection(DATABASE)

        if id:
            uid = request.GET.get("uid")
            data = db.table("news").where({"id": id}).find()
            # 记录浏览量
            db.table("news").where({"id": id}).save({"view": data["view"] + 1})
            # db.table("news").where({"id": id}).setInc("view")

            word_list = get_words(data["title"])
            count = ",".join([i[0] for i in word_list])
        elif keyword:
            # 解码url中文参数keyword
            q = parse.unquote_plus(keyword)
            condition["title"] = ["LIKE", "%{}%".format(q), "", "e"]
            count = db.table('news').where(condition).count()
            data = db.table('news').where(condition).page(page, limit).order("view desc,reply desc").select()

        else:
            if category:
                condition["category"] = category
                count = db.table('news').where(condition).count()
                data = db.table('news').where(condition).page(page, limit).order('id desc').select()
            else:
                count = db.table('news').count()
                data = db.table('news').page(page, limit).order('id desc').order("view desc,reply desc").select()
        return jsonResponse(0, 'success', data, count)
    elif request.method == "POST":
        data = json.loads(request.body.decode('utf-8'))

        res = db.table('news').add(data)

        if res:
            result = {"code": 0, "msg": "添加成功"}
        else:
            result = {"code": 1, "msg": "添加失败"}

        return JsonResponse(result)
    elif request.method == 'PUT':
        data = json.loads(request.body.decode('utf-8'))
        id = data.get("id")

        res = db.table('news').where({"id": id}).save(data)

        if res:
            result = {"code": 0, "msg": "操作成功"}
        else:
            result = {"code": 1, "msg": "操作失败"}

        return JsonResponse(result)
    elif request.method == "DELETE":
        # 删除数据

        id = request.GET.get("id")
        result = db.table('news').where({"id": id}).delete()
        if result:
            return jsonResponse(0, '删除成功')
        return jsonResponse(1, '删除失败')

def data(request):
    '''
    分析数据
    '''
    db = mysql().connection(DATABASE)

    room = db.table("house").group("room").field("room as name,avg(price) as value").order("value desc").limit(
        10).group("room").select()

    address = db.table("house").field("name,price").select()

    address_list = [i["name"] for i in address]

    text = " ".join(address_list)

    keyword = get_words(text)

    room_area_line = db.table("house").field("room_area as name,count(*) as value").group("room_area").select()

    area = db.table("house").field("room as name,price as value").order("name asc").select()

    statis = db.table("house").field("name,statis as value").order("value desc").limit(10).select()

    room_type = db.table("house").field("room_type as name,count(*) as value").order("value desc").group(
        "room_type").limit(10).select()

    bj_area_price = db.table("house").where("city = '北京'").field("area as name,price as value").order(
        "value desc").select()

    bj_area_price = [[i["name"].split(",")[0], i["value"]] for i in bj_area_price]

    hot_city = db.table("house").group("city").field("city as name,count(*) as value").order("value desc").select()

    data = {
        "room": room,
        "keyword": keyword,
        "area": area,
        "statis": statis,
        "room_type": room_type,
        "bj_area_price": bj_area_price,
        "hot_city": hot_city,
        "room_area_line": room_area_line
    }

    return jsonResponse(0, '成功', data)


def user(request):
    db = mysql().connection(DATABASE)
    if request.method == "GET":
        page = request.GET.get("page")
        limit = request.GET.get("limit")
        key = request.GET.get("key")
        id = request.GET.get("id")
        keyword = request.GET.get("keyword")
        condition = {}
        if keyword:
            condition["name"] = ["LIKE", "%{}%".format(keyword), "", "e"]
            count = db.table('user').where(condition).count()
            data = db.table('user').where(condition).page(page, limit).order('id desc').select()
        elif id:
            count = db.table('user').where({"id": id}).count()
            data = db.table('user').where({"id": id}).order('id desc').find()
        else:
            count = db.table('user').count()
            data = db.table('user').page(page, limit).order('id desc').select()
        return jsonResponse(0, 'success', data, count)
    elif request.method == "PUT":
        data = json.loads(request.body)
        id = data.get("id")
        result = db.table('user').where({"id": id}).save(data)
        if result:
            return jsonResponse(0, '修改成功')
        return jsonResponse(1, '修改失败')
    elif request.method == "POST":
        data = json.loads(request.body)
        result = db.table('user').add(data)
        if result:
            return jsonResponse(0, '添加成功')
        return jsonResponse(1, '添加失败')
    elif request.method == "DELETE":

        id = request.GET.get("id")
        result = db.table('user').where({"id": id}).delete()
        if result:
            return jsonResponse(0, '删除成功')
        return jsonResponse(1, '删除失败')




5、源码获取方式

🍅由于篇幅限制,获取完整文章或源码、代做项目的,查看我的【用户名】、【专栏名称】、【顶部选题链接】就可以找到我啦🍅

感兴趣的可以先收藏起来,点赞、关注不迷路,下方查看👇🏻获取联系方式👇🏻

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1349679.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

STM32CubeMX教程14 ADC - 多通道DMA转换

目录 1、准备材料 2、实验目标 3、实验流程 3.0、前提知识 3.1、CubeMX相关配置 3.1.1、时钟树配置 3.1.2、外设参数配置 3.1.3、外设中断配置 3.2、生成代码 3.2.1、外设初始化调用流程 3.2.2、外设中断调用流程 3.2.3、添加其他必要代码 4、常用函数 5、烧录验…

PE解释器之PE文件结构

PE文件是由许许多多的结构体组成的&#xff0c;程序在运行时就会通过这些结构快速定位到PE文件的各种资源&#xff0c;其结构大致如图所示&#xff0c;从上到下依次是Dos头、Nt头、节表、节区和调试信息(可选)。其中Dos头、Nt头和节表在本文中统称为PE文件头(因为SizeOfHeaders…

虚幻UE 材质-PDO像素深度偏移量

2024年的第一天&#xff01;&#xff01;&#xff01;大家新年快乐&#xff01;&#xff01;&#xff01; 可能是长大了才知道 当你过得一般 你的亲朋好友对你真正态度只可能是没有表露出来的冷嘲热讽了 希望大家新的一年平安、幸福、 永远活力满满地追求自己所想做的、爱做的&…

影视后期:PR 调色处理,灰片还原,校色偏色素材

灰片还原 确定拍摄灰片的相机型号品牌官网下载专用log文件LUT-浏览-导入slog3分析亮部波形-增加画面对比分析矢量示波器-提高整体饱和 校正LUT可以将前期拍摄的log色彩模式的视频转换为成709色彩模式&#xff0c;即将灰度视频转换为正常效果(灰片还原) 各个相机有对应的校正L…

跟着cherno手搓游戏引擎【3】事件系统和预编译头文件

不多说了直接上代码&#xff0c;课程中的架构讲的比较宽泛&#xff0c;而且有些方法写完之后并未测试。所以先把代码写完。理解其原理&#xff0c;未来使用时候会再此完善此博客。 文件架构&#xff1a; Event.h:核心基类 #pragma once #include"../Core.h" #inclu…

javaScript中的常用事件

文章目录 javaScript中什么是事件&#xff1f;基本原理javaScript中的时间使用1&#xff0c;窗口事件1.1、onblur1.2、onfocus1.3、onload1.4、onresize 2&#xff0c;表单事件2.1、onchange2.2、**oninput**2.3、oninvalid2.4、onselect2.5、onsubmit 3&#xff0c;键盘事件3.…

最优化总结

最优化 引入问题例1 运输问题例2 生产计划问题例3 指派问题例4 数据拟合问题 线性规划向量和矩阵范数拟合线性拟合非线性拟合 无约束最优化问题的基本思想实验plot函数meshgrid函数linprog函数 引入问题 例1 运输问题 例2 生产计划问题 例3 指派问题 例4 数据拟合问题 线性规划…

BGP路由知识点

目录 1.BGP的工作原理&#xff1a; 2.BGP路由的一般格式&#xff1a; 3.三种不同的自治系统AS 4.BGP的路由选择 5.BGP的四种报文 BGP&#xff08;Border Gateway Protocol&#xff09;是一种用于自治系统&#xff08;AS&#xff09;之间的路由选择协议。它是互联网中最常用…

如何确保云中高可用?聊聊F5分布式云DNS负载均衡

在当今以应用为中心的动态化市场中&#xff0c;企业面临着越来越大的压力&#xff0c;不仅需要提供客户所期望的信息、服务和体验&#xff0c;而且要做到快速、可靠和安全。DNS是网络基础设施的重要组成部分&#xff0c;拥有一个可用的、智能的、安全和可扩展的DNS基础设施是至…

面试高频算法专题:数组的双指针思想及应用(算法村第三关白银挑战)

所谓的双指针其实就是两个变量&#xff0c;不一定真的是指针。 快慢指针&#xff1a;一起向前走对撞指针、相向指针&#xff1a;从两头向中间走背向指针&#xff1a;从中间向两头走 移除值为val的元素 题目描述 27. 移除元素 - 力扣&#xff08;LeetCode&#xff09; 给你…

IoT 物联网常用协议

物联网协议是指在物联网环境中用于设备间通信和数据传输的协议。根据不同的作用&#xff0c;物联网协议可分为传输协议、通信协议和行业协议。 传输协议&#xff1a;一般负责子网内设备间的组网及通信。例如 Wi-Fi、Ethernet、NFC、 Zigbee、Bluetooth、GPRS、3G/4G/5G等。这些…

ArkTS - @Prop、@Link

一、作用 Prop 装饰器 和Link装饰器都是父组件向子组件传递参数&#xff0c;子组件接收父组件参数的时候用的&#xff0c;变量前边需要加上Prop或者Link装饰器即可。&#xff08;跟前端vue中父组件向子组件传递参数类似&#xff09; // 子组件 Component struct SonCom {Prop…

python实现Ethernet/IP协议的客户端(二)

Ethernet/IP是一种工业自动化领域中常用的网络通信协议&#xff0c;它是基于标准以太网技术的应用层协议。作为工业领域的通信协议之一&#xff0c;Ethernet/IP 提供了一种在工业自动化设备之间实现通信和数据交换的标准化方法。python要实现Ethernet/IP的客户端&#xff0c;可…

影视后期: PR调色处理,调色工具面板介绍

写在前面 整理一些影视后期的相关笔记博文为 Pr 调色处理&#xff0c;涉及调色工具面板简单认知包括 lumetri 颜色和范围面板理解不足小伙伴帮忙指正 元旦快乐哦 _ 名词解释 饱和度 是指色彩的鲜艳程度&#xff0c;也被称为色彩的纯度。具体来说&#xff0c;它表示色相中灰色…

python实现平滑线性滤波器——数字图像处理

原理&#xff1a; 平滑线性滤波器是一种在图像处理中广泛使用的工具&#xff0c;主要用于降低图像噪声或模糊细节。这些滤波器的核心原理基于对图像中每个像素及其邻域像素的线性组合。 邻域平均&#xff1a; 平滑线性滤波器通过对目标像素及其周围邻域像素的强度值取平均来工…

Linux驱动学习—ioctl接口

1、unlock_ioctl和ioctl有什么区别&#xff1f; kernel 2.6.36 中已经完全删除了struct file_operations 中的ioctl 函数指针&#xff0c;取而代之的是unlocked_ioctl 。ioctl是老的内核版本中的驱动API&#xff0c;unlock_ioctl是当下常用的驱动API。unlocked_ioctl 实际上取…

易舟云财务软件使用教程【文章目录】

易舟云财务软件使用教程【文章目录】 1、财务软件导论2、易舟云财务软件3、财务软件原理4、账套5、会计凭证6、资金日记账7、发票8、员工工资9、固定资产10、期末处理(结转与结账)11、会计账簿12、财务报表13、财务软件设置 1、财务软件导论 财务软件导论 2、易舟云财务软件 …

STM32与TB6612电机驱动器的基础入门教程

TB6612是一款常用的双路直流电机驱动芯片&#xff0c;适用于小型机器人以及其他需要控制电机方向和转速的应用。在STM32微控制器的配合下&#xff0c;可以实现对TB6612电机驱动器的控制&#xff0c;进而实现电机的控制。本文将带领读者一步步了解如何搭建基于STM32与TB6612的电…

Android 13 - Media框架(29)- MediaCodec(四)

上一节我们了解了如何通过 onInputBufferAvailable 和 getInputBuffer 获取到 input buffer index&#xff0c;接下来我们一起学习上层如何拿到buffer并且向下写数据的。 1、获取 input Buffer 获取 MediaCodec 中的 buffer 有两种方式&#xff0c;一种是调用 getInputBuffers…

Linux:/proc/sys/vm/目录各文件详解

目录 前言一、/proc/sys/vm/目录各文件二、相关功能的API函数 前言 /proc/sys/vm/ 目录是 Linux 系统中的一个特殊目录&#xff0c;它包含了与虚拟内存子系统相关的系统内核参数。这些参数可以用来配置系统的虚拟内存管理策略&#xff0c;包括内存分配、页面置换、内存压缩、NU…