FastAPI Introduction
Modern async API framework
Interview Relevant: Modern APIs
FastAPI
High performance, easy to learn, fast to code.
Code Examples
python
1from fastapi import FastAPI
2app = FastAPI()
3
4@app.get("/")
5async def read_root():
6 return {"Hello": "World"}