Skip to content

AbhimanyuHK/Flask-Rest-App

Repository files navigation

Flask-Rest-App

Scope

  • Inserting rows to database

  • Updating rows in database

  • Fetching rows from database

  • Deleting rows from database

Install dependencies

$ pip install -r requirements.txt

Run application

$ python script/flaskapp.py

Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)

Insert rows

http://127.0.0.1:5000/create

{
	"firstname" : "abhi",
	"lastname" : "manyu",
	"email" : "[email protected]"
}

Get row by id

http://127.0.0.1:5000/get/

Get all rows

http://127.0.0.1:5000/all

Delete row by id

http://127.0.0.1:5000/delete/

{
	"firstname" : "abcd",
	"lastname" : "wxyz",
	"email" : "[email protected]"
}

Update row

http://127.0.0.1:5000/update/

About

REST app in python flask for database interaction.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages