What is a FastAPI server
llows users to fetch data from a variety of external APIs (e.g. dog facts, daily quotes, etc)
The simplest FastAPI file could look like this:
from fastapi import FastAPI
app = FastAPI()
@app.get(“/”)
async def root():
return {“message”: “Hello World”}
Link to documentation
https://fastapi.tiangolo.com/tutorial/first-steps/