flask-restful 大型项目结构示例

谭志用
2023-12-01

Github项目地址:https://github.com/lalala223/flask-restful-example

项目结构

.
├── LICENSE
├── README.md
├── config.py
├── example
│   ├── __init__.py
│   ├── app.py
│   ├── common
│   │   ├── __init__.py
│   │   ├── code.py
│   │   ├── func.py
│   │   └── utils.py
│   ├── models.py
│   ├── resources
│   │   ├── __init__.py
│   │   └── hello.py
│   └── routes
│       ├── __init__.py
│       └── v1.py
├── manager.py
├── requirements.txt
└── tests
    └── __init__.py
 类似资料: