RESTful API in Flask: Res
RESTful API in Flask: Resources and CRUD Operations through Conventions Project
RESTful API in Flask: Resources and CRUD Operations through Conventions Project
What is RESTful API?
Representational State Transfer that allows clients to interact with a server by performing HTTP operation (GET, POST, PATCH, DELETE) on resources.
In our project our resources are Convention Areas, Conventions, Host companies.
In our project we create and define the models fo…