Simple async CRUDL based on Tornado and Peewee ORM
-
Updated
Nov 15, 2021 - Python
CRUD is an acronym that stands for create, read, update and delete in the context of database queries or HTTP verbs in case of REST APIs.
| CRUD | SQL | HTTP |
|-|-|-|
| Create | INSERT | POST |
| Read | SELECT | GET |
| Update | UPDATE | PUT to replace, PATCH to modify |
| Delete | DELETE | DELETE |
Simple async CRUDL based on Tornado and Peewee ORM
The easiest, quickest and most complete way to publish REST API with Create, Read, Update, Delete and List endpoints from Django models.