ai-study-python/README.md

858 B
Raw Permalink Blame History

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