基于 Flask 的 Python 应用程序,主要功能包括用户认证、文件上传(CSV 和图片)、图像文字识别(OCR)以及根据识别结果进行一些数据处理和比对
#coding=utf-8
from jspt_data import jspt_cx_table,jspt_cx_table_sql
from jspt_forms import Login, RegisterForm
from flask_sqlalchemy import SQLAlchemy
from flask import Flask, render_template, session, redirect,</