/Building_REST_API

A simple way to build your own REST API using Flask

Primary LanguagePython

Building Your Own REST API Web Service

A simple way to build your own REST API using Flask.

Dependencies required : Flask

To install Flask: pip install Flask

A video explaining the working is provided.

All the Basic CRUD Operations are performed :

  1. Create - POST Request
  2. Read  - GET Request
  3. Update - PUT Request
  4. Delete - DELETE Request

POSTMAN

Is a collaboration platform for API development. We can use POSTMAN to easily send different types of REST Requests from within the application while specifying our own body and Headers. This can be used to verify all the 4 types of Requests.

To RUN:

Run webservice.py and it will start a locally hosted server.