python版本的ai学习
Go to file
2025-06-25 13:37:37 +08:00
app 使用“工厂模式 + 蓝图(Blueprint)”来组织项目结构 2025-06-25 13:37:37 +08:00
.gitignore 初始化项目 2025-06-25 10:15:57 +08:00
config.py 使用“工厂模式 + 蓝图(Blueprint)”来组织项目结构 2025-06-25 13:37:37 +08:00
LICENSE Initial commit 2025-06-25 09:46:13 +08:00
README.md 使用“工厂模式 + 蓝图(Blueprint)”来组织项目结构 2025-06-25 13:37:37 +08:00
requirements.txt 使用“工厂模式 + 蓝图(Blueprint)”来组织项目结构 2025-06-25 13:37:37 +08:00
run.py 使用“工厂模式 + 蓝图(Blueprint)”来组织项目结构 2025-06-25 13:37:37 +08:00
wsgi.py 配置路由、swagger、wsgi 2025-06-25 11:32:10 +08:00

ai-study-python

python版本的ai学习

├── app/                     # 应用主目录
│   ├── __init__.py          # Flask app 创建工厂,注册蓝图等
│   ├── api/                 # 存放所有 API 接口模块
│   │   ├── __init__.py
│   │   ├── user.py          # 示例:用户模块接口
│   ├── models/              # 数据模型如用SQLAlchemy
│   │   └── __init__.py
│   └── services/            # 业务逻辑层(可选)
│       └── __init__.py
├── static/                  # 前端静态文件(如果需要本地托管)
├── config.py                # 配置文件
├── run.py                   # 程序入口,启动 Flask 应用
├── requirements.txt         # Python 依赖
└── README.md