Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/diptangsu/flask-restful-db-sqlalchemy
https://github.com/diptangsu/flask-restful-db-sqlalchemy
Last synced: about 21 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/diptangsu/flask-restful-db-sqlalchemy
- Owner: diptangsu
- Created: 2020-02-10T14:13:03.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T03:35:23.000Z (almost 2 years ago)
- Last Synced: 2023-03-03T17:11:43.072Z (over 1 year ago)
- Language: Python
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
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.py5 directories, 17 files
```