Skip to content
#

CRUD

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 |

Here are 1,100 public repositories matching this topic...

Framework-agnostic backend example using FastAPI. Implements Clean Architecture and CQRS with DDD-inspired patterns, featuring DIP (low coupling), DI (no globals), contextual RBAC, and session-based auth (cookies)

  • Updated Aug 5, 2025
  • Python

Created by James Martin

Released 1983

Followers
53 followers
Website
github.com/topics/crud
Wikipedia
Wikipedia

Related Topics

database query rest sql