/fastapi

Video series on using fast api

Primary LanguagePythonMIT LicenseMIT

fastapi

Video series on using fast api

Source: https://youtu.be/SORiTsvnU28?si=hWV-0veqDf4n5fAp

Prereqs

In order to have a running API server with FastAPI, you're going to need to install FastAPI and a package that runs a server for you. This is here uvicorn comes in.

Install:

  • 'pip install fastapi[all]' <---- This installs fastAPI, uvicorn and all dependencies.

NOTE: FastAPI relies on pydantic for all the validation and definitions of objects.