/FastAPI

Primary LanguagePython

Trying to Create a Roadmap for FastAPI :)

If you face runtime error on VScode for first time

  • Set-ExecutionPolicy Unrestricted -Scope Process

Recap::
Import FastAPI.
Create an app instance.
Write a path operation decorator (like @app.get("/")).
Write a path operation function (like def root(): ... above).
Run the development server (like uvicorn main:app --reload).
-- Run uvicorn main:app --reload