计算机毕设项目(一)基于flask+mongo+angular实现爬取加密货币信息并使用LSTM模型预测价格的论坛可视化平台

文章目录

  • 加密货币平台项目介绍
    • 技术栈
      • 1. 用户管理
      • 2. 新闻和帖子管理
      • 3. 加密货币数据
      • 4. 对话获取
      • 5. 数据获取
    • 服务端代码
    • 完整代码

加密货币平台项目介绍

这个项目是一个基于 Flask 和 MongoDB 的深度学习应用程序,通过爬虫爬取加密货币行情和介绍信息,并根据新的数据使用LSTM去预测行情价格。展示涵盖了用户管理、新闻获取、加密货币数据处理、对话获取和处理、帖子管理等多个功能。
在这里插入图片描述

技术栈

  • 后端: Flask 提供了一个轻量级的网页服务器和后端API。
  • 前端: 使用angular+echart进行界面构建和图表绘制。
  • 数据库: 使用 MongoDB 作为数据库,用于存储用户信息、新闻、帖子和其他数据。
  • 数据处理: 对于加密货币价格预测,使用 LSTM 模型处理历史市场数据。
  • 代理支持: 在获取外部数据时支持通过代理访问。

1. 用户管理

  • 注册(/signin): 允许新用户创建账户。系统会检查用户名是否已存在,并对密码进行加密保存。
  • 登录(/login): 用户可以登录到系统。该接口验证用户名和密码的正确性。
  • 密码修改(/modify): 用户可以修改他们的密码。
  • 删除用户(/dele): 提供用户删除自己账户的功能。

2. 新闻和帖子管理

  • 获取卡片详情(/card-details/<card_id>): 根据卡片ID获取加密货币相关新闻的详细信息。
  • 上传帖子(/uploadpost): 允许用户上传新的帖子,包括标题、内容、日期等信息。
  • 获取所有帖子(/getposts): 可以获取平台上所有用户上传的帖子。
  • 更新帖子喜欢数(/updatelikes)更新评论数(/updatecomments): 这两个接口允许用户更新帖子的喜欢数和评论数。
    在这里插入图片描述

3. 加密货币数据

  • 获取市场数据(/market): 从外部API获取实时的加密货币市场数据。
  • 获取特定加密货币数据(/cryptos): 允许用户根据特定加密货币获取历史市场数据。
  • 价格预测(/predict): 使用 LSTM 模型预测特定加密货币的未来价格。
    在这里插入图片描述
    在这里插入图片描述

4. 对话获取

  • 获取对话(/dialog): 提供一个接口来获取存储的对话数据。

5. 数据获取

  • 获取数据(/fetch_data 和 /fetch_data2): 这两个接口用于从指定的URL获取数据,支持代理设置。

服务端代码

flask的服务端代码如下

import json
import bcrypt
from bson import json_util
from flask import Flask, request, jsonify, session
from pymongo import MongoClient
from flask_cors import CORS
import requests
from predict_price import lstm_predictor# 连接到 MongoDB 服务器
mongo_client = MongoClient("mongodb://localhost:27017/")# 选择数据库和集合
db_name = "crypto_db"
collection_name = "users"
collection_name2 = "news"
collection_name3 = "crypto"
collection_name4 = "dialog"
collection_name5 = "post"
db = mongo_client[db_name]
collection = db[collection_name]
collection2 = db[collection_name2]
collection3 = db[collection_name3]
collection4 = db[collection_name4]
collection5 = db[collection_name5]
# 如果集合为空,则插入初始化记录
if collection.estimated_document_count() == 0:initial_record = {"usr": "admin", "pwd": "admin"}collection.insert_one(initial_record)# 初始化 Flask 应用
app = Flask(__name__)
CORS(app)def need_proxy():url = "https://www.google.com"try:response = requests.get(url, timeout=1)# 检查响应状态是否正常(状态码 200)if response.status_code == 200:return 1else:return 0except Exception as e:# print(f"Error accessing Google: {e}")return 0# 路由 - 注册
@app.route('/signin', methods=['POST'])
def signin():user_data = request.get_json()username = user_data.get('usr')password = user_data.get('pwd')print(username, password)if username and password:# 检查用户名是否已存在existing_user = collection.find_one({"usr": username})if existing_user:return jsonify({"status": "fail", "message": "Username already exists."})# 哈希密码并插入新用户password = password.encode('utf-8')hashed_password = bcrypt.hashpw(password, bcrypt.gensalt())new_user = {"usr": username, "pwd": hashed_password}collection.insert_one(new_user)return jsonify({"status": "success", "message": "User registered successfully."})else:return jsonify({"status": "fail", "message": "Username or password missing."})# 路由 - 登录
@app.route('/login', methods=['POST'])
def login():user_data = request.get_json()username = user_data.get('usr')password = user_data.get('pwd')if username and password:# 查找用户existing_user = collection.find_one({"usr": username})if existing_user:# 验证密码password = password.encode('utf-8')if bcrypt.checkpw(password, existing_user['pwd']):return jsonify({"status": "success", "message": "Login successful."})else:return jsonify({"status": "fail", "message": "Incorrect password."})else:return jsonify({"status": "fail", "message": "User not found."})else:return jsonify({"status": "fail", "message": "Username or password missing."})@app.route('/card-details/<card_id>', methods=['GET'])
def get_card_details(card_id):card = collection2.find_one({'_id': int(card_id)})# print(card)if card:card_dict = json_util.loads(json_util.dumps(card))  # 将结果转换为 dict 类型card_dict.pop('_id')  # 删除 '_id' 键,因为它无法被 JSON 序列化return jsonify(card_dict)else:return jsonify({'error': 'Card not found'}), 404@app.route('/dialog', methods=['GET'])
def get_dialogue():dialogue_data = collection4.find_one()if dialogue_data:dialogue_data.pop('_id')return dialogue_dataelse:return jsonify({"error": "Data not found"}), 404def fetch_market_data():url = "https://www.okx.com/priapi/v5/market/mult-cup-tickers?t=1682245351541&ccys=BTC,ETH,USDT,BNB,USDC,XRP,ADA,OKB,DOGE,MATIC,SOL,DOT,LTC,SHIB,TRX,AVAX,DAI,WBTC,UNI,LINK,TON,LEO,ATOM,XMR,ETC,XLM,ICP,BCH,FIL,TUSD"# 设置代理proxies = {"http": "http://127.0.0.1:10809","https": "http://127.0.0.1:10809",}res = need_proxy()try:if res:response = requests.get(url)else:response = requests.get(url, proxies=proxies)if response.status_code == 200:return response.json()else:print(f"Error fetching market data: {response.status_code}")return 0except Exception as e:print(f"Error fetching market data: {e}")return 0@app.route('/market', methods=['GET'])
def get_market_data():market_data = fetch_market_data()# print(market_data)return jsonify(market_data['data'][:9])def fetch_market_data2(coin):if coin == 'USDT':url = 'https://www.okx.com/priapi/v5/market/index-candles?t=1682316274275&instId=USDT-USD&limit=1000&bar=1D'else:url = "https://www.okx.com/priapi/v5/market/candles?t=1682307645213&instId=" + coin + "-USDT&limit=1000&bar=1D"# 设置代理proxies = {"http": "http://127.0.0.1:10809","https": "http://127.0.0.1:10809",}res = need_proxy()try:if res:response = requests.get(url)else:response = requests.get(url, proxies=proxies)if response.status_code == 200:return response.json()else:print(f"Error fetching market data: {response.status_code}")return 0except Exception as e:print(f"Error fetching market data: {e}")return 0@app.route('/cryptos', methods=['POST'])
def get_cryptos():data = request.get_json()coin = data.get('coin')market_data = fetch_market_data2(coin)#  save the data to local,filename is coin+timestapfilename = "datasets/" + coin + ".csv"with open(filename, 'w') as f:# 保存每个元素的第一个和第六个元素,即时间和收盘价存为csv文件f.write('time,price\n')for i in market_data['data']:f.write(str(i[0]) + ',' + str(i[5]) + '\n')return jsonify(market_data['data'][::-1])@app.route('/modify', methods=['POST'])
def modify():user_data = request.get_json()username = user_data.get('usr')password = user_data.get('pwd')if username and password:# 查找用户existing_user = collection.find_one({"usr": username})if existing_user:# 哈希新密码并更新用户密码new_password = password.encode('utf-8')hashed_new_password = bcrypt.hashpw(new_password, bcrypt.gensalt())collection.update_one({"usr": username}, {"$set": {"pwd": hashed_new_password}})return jsonify({"status": "success", "message": "Password updated successfully."})else:return jsonify({"status": "fail", "message": "Username not found."})else:return jsonify({"status": "fail", "message": "Username, or new password missing."})@app.route('/dele', methods=['POST'])
def dele():user_data = request.get_json()username = user_data.get('usr')if username:# 查找用户existing_user = collection.find_one({"usr": username})if existing_user:collection.delete_one({"usr": username})return jsonify({"status": "success", "message": "User deleted successfully."})else:return jsonify({"status": "fail", "message": "Username not found."})else:return jsonify({"status": "fail", "message": "Username  missing."})# post
@app.route('/uploadpost', methods=['POST'])
def upload_post():post_data = request.get_json()title = post_data.get('title')content = post_data.get('content')date = post_data.get('date')summary = post_data.get('summary')likes = post_data.get('likes')comments = post_data.get('comments')if title and content and date and summary:new_post = {"title": title,"content": content,"date": date,"summary": summary,"likes": likes,"comments": comments}collection5.insert_one(new_post)print(new_post)return jsonify({"status": "success", "message": "Post saved successfully."})else:return jsonify({"status": "fail", "message": "Post data missing or incomplete."})@app.route('/getposts', methods=['GET'])
def get_all_posts():try:posts = list(collection5.find({}))for post in posts:post['_id'] = str(post['_id'])return jsonify({"status": "success", "data": posts})except Exception as e:print(f"Error retrieving posts: {e}")return jsonify({"status": "fail", "message": "Error retrieving posts."})@app.route('/updatelikes', methods=['POST'])
def updatelikes():post_data = request.get_json()posttitle = post_data.get('title')new_likes = post_data.get('likes')if posttitle and new_likes is not None:result = collection5.update_one({"title": posttitle}, {"$set": {"likes": new_likes}})if result.modified_count > 0:return jsonify({"status": "success", "message": "Post likes updated successfully."})else:return jsonify({"status": "fail", "message": "Post not found or likes not updated."})else:return jsonify({"status": "fail", "message": "Post title or new likes missing."})@app.route('/updatecomments', methods=['POST'])
def updatecomments():post_data = request.get_json()posttitle = post_data.get('title')new_comments = post_data.get('comments')if posttitle and new_comments is not None:result = collection5.update_one({"title": posttitle}, {"$set": {"comments": new_comments}})if result.modified_count > 0:return jsonify({"status": "success", "message": "Post comments updated successfully."})else:return jsonify({"status": "fail", "message": "Post not found or comments not updated."})else:return jsonify({"status": "fail", "message": "Post title or new comments missing."})@app.route('/fetch_data', methods=['POST'])
def fetch_data():data = request.jsonurl = data['url']print(url)proxies = {"http": "http://127.0.0.1:10809","https": "http://127.0.0.1:10809",}response = requests.get(url, proxies=proxies)xml_data = json.loads(response.text)return xml_data["data"]@app.route('/fetch_data2', methods=['POST'])
def fetch_data2():data = request.jsonurl = data['url']print(url)proxies = {"http": "http://127.0.0.1:10809","https": "http://127.0.0.1:10809",}response = requests.get(url, proxies=proxies)xml_data = json.loads(response.text)return jsonify({"data": xml_data["data"]["introduce"]})@app.route('/predict', methods=['POST'])
def predict():data = request.jsoncoin = data['coin']return jsonify({"data": lstm_predictor(coin)})if __name__ == '__main__':app.run(debug=True)

完整代码

整个项目为加密货币爱好者提供了一个综合平台,不仅支持基本的用户管理和社交功能,还整合了市场数据获取和分析,以及数据预测功能,是一个多功能的加密货币社区应用。
需要获取源码的可以关注公众号"一颗程序树",点击菜单栏的免费源码-源码集合的页面中输入关键词加密货币即可

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

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

kubeSphere DevOps部署vue项目

devops部署vue项目 &#x1f314;环境说明&#x1f30f;创建DevOps工程&#x1f30f;填写流水线信息&#x1f30f;创建流水线 &#x1f314;部署应用所需脚本JenkinsfileDockerfile &#x1f314;脚本一些参数如何设置说明&#x1f30f;deploy.yaml中的:imagePullSecrets:name属…

OceanBase 4.2特性解读:Show Trace全链路跟踪,助力快速问题定位与精准诊断

在分布式数据库环境下&#xff0c;慢 SQL 诊断是运维人员面临的一大挑战。在无法及时发现问题根本原因的情况下&#xff0c;可能会严重影响用户体验&#xff0c;甚至会导致业务服务不可用。相对于单机数据库&#xff0c;分布式数据库系统涉及多个节点、多组件的协同工作&#x…

深度学习烦人的基础知识(2)---Nvidia-smi功率低,util高---nvidia_smi参数详解

文章目录 问题现象解释解决方案 磨刀不误砍柴工--nvidia-smi参数解读 问题 如下图所示&#xff0c;GPU功率很低&#xff0c;Util占用率高。这个训练时不正常的&#xff01; 现象解释 Pwr是指GPU运行时耗电情况&#xff0c;如图中GPU满载是300W&#xff0c;目前是86W与GPU2的…

互联网加竞赛 基于机器学习与大数据的糖尿病预测

文章目录 1 前言1 课题背景2 数据导入处理3 数据可视化分析4 特征选择4.1 通过相关性进行筛选4.2 多重共线性4.3 RFE&#xff08;递归特征消除法&#xff09;4.4 正则化 5 机器学习模型建立与评价5.1 评价方式的选择5.2 模型的建立与评价5.3 模型参数调优5.4 将调参过后的模型重…

如何领取腾讯云免费服务器?腾讯云服务器免费领取教程

腾讯云免费服务器申请入口 https://curl.qcloud.com/FJhqoVDP 免费服务器可选轻量应用服务器和云服务器CVM&#xff0c;轻量配置可选2核2G3M、2核8G7M和4核8G12M&#xff0c;CVM云服务器可选2核2G3M和2核4G3M配置&#xff0c;腾讯云百科txybk.com分享2024年最新腾讯云免费服务器…

C语言辨析——这个字符串长度是多少?

1. 问题 请问字符串"\tac\b\b\x41\nc\104\""的长度是多少&#xff1f; 2. 解答 该字符串的长度为10。这10个字符分别是水平制表符\t&#xff0c;a&#xff0c;c&#xff0c;两个退格符\b&#xff0c;\x41对应的字符’A&#xff0c;换行符\n&#xff0c;c&…

第十七周周报

文章目录 摘要目标检测锚框交并比NMS 非极大值抑制输出 文献阅读&#xff1a;SMPL: A Skinned Multi-Person Linear ModelIntroductionRelated WorkModel FormulationTraining评估动态SMPL讨论结论 总结 摘要 本周看了三维人体重建的领域&#xff0c;看了一篇SMPL的文章&#…

腾讯云免费服务器-多规格高配服务器0元试用,开箱即用

腾讯云免费服务器申请入口 https://curl.qcloud.com/FJhqoVDP 免费服务器可选轻量应用服务器和云服务器CVM&#xff0c;轻量配置可选2核2G3M、2核8G7M和4核8G12M&#xff0c;CVM云服务器可选2核2G3M和2核4G3M配置&#xff0c;腾讯云百科txybk.com分享2024年最新腾讯云免费服务器…

大数据之谷歌文件系统论文 GFS The Google File System

原文地址 谷歌文件系统论文 摘要 我们设计并实现了Google文件系统&#xff0c;这是一个面向大规模分布式数据密集型应用的可扩展分布式文件系统。 它在廉价的通用硬件上运行&#xff0c;提供了容错性&#xff0c;并向大量客户端提供高聚合性能。 尽管与先前的分布式文件系统…

全网唯一!Matlab周杰伦专辑配色包MJay

前段时间杰伦出了新歌&#xff0c;第一时间听完&#xff0c;感觉没过瘾&#xff0c;便又翻出他以前的作品&#xff0c;想着继续回忆青春。 翻着翻着&#xff0c;突然发现每张专辑封面的配色都别有一番味道&#xff0c;似乎可以搞些事情…… 于是&#xff0c;我默默打开了Matl…

Matlab:toposort

语法&#xff1a; n toposort(G) %调用toposort函数&#xff0c;对有向图G进行拓扑排序&#xff0c;并将排序结果存储在变量n中 n toposort(G,Order,algorithm) [n,H] toposort(___) %使用了两个输出参数的形式来调用toposort函数。除了返回排序结果n外&am…

直接写一区! ZOA-PCNN-AT-SVM斑马优化并行卷积-支持向量机融合注意力机制的故障识别程序,特征可视化,实验多!图多!

适用平台&#xff1a;Matlab2023版本及以上 本原创程序提出的ZOA-PCNN-AT-SVM故障识别模型还没有人写&#xff01;在此基础上进一步对参考模型进行多重改进&#xff0c;程序注释清晰&#xff0c;干货满满&#xff0c;下面对文章和程序做简要介绍&#xff01; ①识别模型部分参…