flask_rest_api

This is a simple web API that I built with Flask with full CRUD functionality.

URLs:

Index URL: http://localhost:5000/
Create / Post: http://localhost:5000/create/name
Read / Get: http://localhost:5000/read/id
Update / Put: http://localhost:5000//update/id/name
Delete: http://localhost:5000/delete/id

Index:

Create Functionality:

Add an entry named Hannah.

Read Functionality:

Read "id" 3.

Update Functionality:

Update "id" 5 to Joey.

Delete Functionality:

Delete an id. Once an entry is removed, all of the remaining entries become updated.