This Repository shows up a simple Rest API with Python Flask and Connexion.
REST proviedes a set of conventions taking advantage of the HTTP protocol to provide CRUD (Create, Read, Update, and Delete) functionality.
| Action | HTTP Verb | Description |
|---|---|---|
| Create | POST | Create a new, unique thing |
| Read | GET | Read the information about a thing or collection of things |
| Update | PUT | Update the information about an existing thing |
| Delete | DELETE | Delete a thing |