This is a Restful Api written on Flask where you can send GET, POST, PUT and DELETE requests for notes CRUD operations. Used flask, flask-restful, flask-sqlalchemy.
$ pip install -r requirements.txt
Get all notes
$ curl --request GET "{URL}/notes"
Get note by id
$ curl --request GET "{URL}/note/{id}"
Create note by id
$ curl --request POST "{URL}/note/{id}" --form "title={title}" --form "body={body}"
Update note by id
$ curl --request PUT "{URL}/note/{id}" --form "title={title}" --form "body={body}"
Delete note by id
$ curl --request Delete "{URL}/note/{id}"