FastAPI

 FastAPI

  • FastAPI is a python web-framework for building modern APIs, where it keep everything simple and scalable/extensible as a developer.
    • Fast(Performance) - Data validation, serialization, documentation and more are included as package.
    • Fast(Development) - Only with few line of code you can have your first Rest API ready for deployment.
  • Key Notes:
    • Few bugs
    • Quick and Easy to build
    • Robust
    • Standards

Short summary:

  • FastAPI is a web-framework for building modern RESTful APIs.
  • Official documentation link: https://fastapi.tiangolo.com/

FASTAPI compatibility with an application architecture:

Users of FASTAPI:

  • Netflix
  • Uber
  • Microsoft

Advantage of having a web framework:

  • Provides simplified ways to create your web-application.
  • Any framework has it's own community and was created by may years development and hence help to create fast and secure application easily.

Comments

Popular posts from this blog

Post Request with Pydantic usage (input validator)

Code Scalability and Routing

CRUD Assignment