# viewstate **Repository Path**: mobile191llx/viewstate ## Basic Information - **Project Name**: viewstate - **Description**: 基于python实习的csv、数据库视图等操作······ - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-12-25 - **Last Updated**: 2024-12-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # viewstate #### 介绍 基于python实现的csv数据分解入库、客户端可访问服务器端口获取数据库数据 #### 软件架构 软件架构说明 #### 安装教程 1. xxxx 2. xxxx 3. xxxx #### 使用说明 1. xxxx 2. xxxx 3. xxxx #### 参与贡献 1. Fork 本仓库 2. 新建 Feat_xxx 分支 3. 提交代码 4. 新建 Pull Request #### 特技 1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md 2. Gitee 官方博客 [blog.gitee.com](https://blog.gitee.com) 3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解 Gitee 上的优秀开源项目 4. [GVP](https://gitee.com/gvp) 全称是 Gitee 最有价值开源项目,是综合评定出的优秀开源项目 5. Gitee 官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help) 6. Gitee 封面人物是一档用来展示 Gitee 会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/) ``` viewstate ├─ .idea #pycharm配置 │ ├─ dataSources │ │ ├─ fb9b85d0-5ef5-4559-a3d1-abbf0e4e21d4 │ │ │ └─ storage_v2 │ │ │ └─ _src_ │ │ │ └─ schema │ │ │ ├─ information_schema.FNRwLQ.meta │ │ │ ├─ mysql.osA4Bg.meta │ │ │ ├─ performance_schema.kIw0nw.meta │ │ │ ├─ sys.zb4BAA.meta │ │ │ └─ viewstate.DGlXow.meta │ │ └─ fb9b85d0-5ef5-4559-a3d1-abbf0e4e21d4.xml │ ├─ dataSources.local.xml │ ├─ dataSources.xml │ ├─ inspectionProfiles │ │ ├─ profiles_settings.xml │ │ └─ Project_Default.xml │ ├─ misc.xml │ ├─ modules.xml │ ├─ other.xml │ ├─ sqldialects.xml │ ├─ viewstate.iml │ └─ workspace.xml ├─ config.py # 全局配置文件 ├─ controll # 逻辑层 │ ├─ UserControll.py #用户相关逻辑操作 ├─ files │ ├─ detail_clear.csv #数据文件 │ ├─ ps.txt #是否初始化 │ ├─ viewstate.sql #数据库表 │ └─ 数据分析.ipynb #文档 ├─ main.py #主程序 ├─ model #模型 │ ├─ User.py #用户数据模型 ├─ plt_box #视图 │ ├─ client.py #plt主程序 │ ├─ p1.py # 内容1 │ ├─ p2.py │ ├─ p3.py │ ├─ p4.py │ ├─ p5.py │ ├─ p6.py │ ├─ p7.py │ ├─ p8.py │ ├─ p9.py │ ├─ plt_control.py #plt绘图设置 │ ├─ __init__.py #初始化plt_box视图 ├─ potted # 工具类 │ ├─ db_connect.py # 数据库主体 │ ├─ first.py #初始化 │ ├─ JWT.py #token工具 ├─ query #查询语句 │ ├─ OrderQuery.py #订单表查询 │ ├─ UserQuery.py #用户表查询 ├─ README.md 项目介绍中文版 ├─ static #静态文件 │ ├─ dist #主页网站 │ │ ├─ css │ │ │ ├─ 166.f568aa99.css │ │ │ ├─ 197.da489a74.css │ │ │ ├─ 543.9af73374.css │ │ │ ├─ 885.4f034e44.css │ │ │ ├─ app.7cec201f.css │ │ │ └─ chunk-vendors.0804543f.css │ │ ├─ favicon.ico │ │ ├─ fonts │ │ │ ├─ ionicons.31fd4446.ttf │ │ │ ├─ ionicons.d03f2836.woff2 │ │ │ └─ ionicons.dacd136b.woff │ │ ├─ img │ │ │ ├─ bg.c91bc67e.png │ │ │ └─ ionicons.6e8059e8.svg │ │ ├─ index.html │ │ └─ js │ │ ├─ 166.2143d057.js │ │ ├─ 197.06bd3c49.js │ │ ├─ 543.9e8f5d22.js │ │ ├─ app.d355deba.js │ │ └─ chunk-vendors.af90d09f.js │ └─ svg │ ├─ s1.svg │ ├─ s10.svg │ ├─ s11.svg │ ├─ s2.svg │ ├─ s3.svg │ ├─ s4.svg │ ├─ s5.svg │ ├─ s6.svg │ ├─ s7.svg │ ├─ s8.svg │ └─ s9.svg ├─ test_main.http # 测试接口 ```