REST

REST, or REpresentational State Transfer, is an architectural style for providing standards between computer systems on the web, making it easier for systems to communicate with each other.

Visit the following resources to learn more:

  1. Roy Fieldings dissertation chapter, Representational State Transfer (REST)

  2. Learn REST: A RESTful Tutorial

FastAPI

FastAPI is a Web framework for developing RESTful APIs in Python. FastAPI is based on Pydantic and type hints to validate, serialize, and deserialize data and automatically auto-generate OpenAPI documents.

Visit the following resources to learn more:

  1. Fast Api official documentation
  2. what is CRUD