An open API service indexing awesome lists of open source software.

https://github.com/mannuelf/python

Tinkering with Python, build a REST API with FLASK
https://github.com/mannuelf/python

Last synced: 10 months ago
JSON representation

Tinkering with Python, build a REST API with FLASK

Awesome Lists containing this project

README

          

# Python Rest API

## REST API

Representational state transfer

- Stateless
- A way of thinking about how a server responds to a client request
- Asking for resources, a thing.
- one request cannot depend on any other request, does not know about any other previous request.

## As a server

I accept these commands

|Verb|Description|
|-|-|
|GET| used to send data
|PUT| update / replace
|POST| used to receive data
|PATCH| update / modify
|DELETE| delete