ai-study-python/README.md

21 lines
858 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ai-study-python
python版本的ai学习
<pre lang="md">
├── 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
</pre>