Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/diptangsu/flask-restful-db-sqlalchemy


https://github.com/diptangsu/flask-restful-db-sqlalchemy

Last synced: about 21 hours ago
JSON representation

Awesome Lists containing this project

README

        

# Flask Restful Example

```
.
├── admin.py
├── app.py
├── auth
│   └── security.py
├── config.py
├── data.db
├── db.py
├── models
│   ├── mixins
│   │   └── CRUDMixin.py
│   ├── student.py
│   ├── study.py
│   ├── subject.py
│   └── user.py
├── README.md
├── requirements.txt
├── resources
│   ├── student.py
│   ├── subject.py
│   └── user.py
└── tests
└── test.py

5 directories, 17 files
```