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
- Host: GitHub
- URL: https://github.com/mannuelf/python
- Owner: mannuelf
- Created: 2018-05-13T17:48:54.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-16T15:10:27.000Z (over 7 years ago)
- Last Synced: 2025-03-12T11:32:02.465Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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