https://github.com/abhaysp95/flask-rest-basics
A small project to demostrate flask_restful with CRUD functionality
https://github.com/abhaysp95/flask-rest-basics
Last synced: 3 months ago
JSON representation
A small project to demostrate flask_restful with CRUD functionality
- Host: GitHub
- URL: https://github.com/abhaysp95/flask-rest-basics
- Owner: abhaysp95
- License: mit
- Created: 2020-08-03T04:44:38.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T11:20:25.000Z (over 2 years ago)
- Last Synced: 2025-01-13T03:46:02.003Z (4 months ago)
- Language: Python
- Size: 58.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# REST with flask
A small project showing basic functionality of `flask_restful` with three examples
* basics
* video_api_static
* video_api_db## **basics**:
Basics contain a `hello world` example demonstrating how to get started with flask
and flask_restful## **video_api_static**
This folder contains data storage in memory(a dictionary) showing functionality of
_get, put, delete_ method## **video_api_db**
Showing functionality _get, put, patch_ and _delete_ which is full **CRUD(Create, Read, Update and Delete)**
functionality using SQLAlchemy(sqlite) as databaseHere's a screenshot of it working:
![]()