美文网首页
flask-restful 大型项目结构示例

flask-restful 大型项目结构示例

作者: lalala223 | 来源:发表于2019-03-12 13:16 被阅读0次

Github项目地址:https://github.com/lalala223/flask-restful-project-structure-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

相关文章

网友评论

      本文标题:flask-restful 大型项目结构示例

      本文链接:https://www.haomeiwen.com/subject/joigpqtx.html