Flask:-
How to create web application, how to do routing, how to create url, how to
create API we can all these things through flask.
It is a open source framework use to create web applications
GET: This method is used to retrieve data from the server. e.g In an
eCommerce application, there is a search button to search for an item.
after entering a keyword if we noticed, the keyword you searched for gets
displayed in the URL. This request is used when the data is not sensitive.
POST: This method makes enables users to send data over to the server.
e.g In any authentication-enabled application, the registration and login
form is the best example for the post method. Whenever we enter
Information and submit the data get transferred over to the POST
request. And if we noticed, unlike get request there is no information will
be ever displayed in the URL.
PUT: This method is used to update an existing resource on the server.
Developers always prefer POST over PUT .