Шаг 1 из 4+110 XP
FastAPI — концепт
Async + типы + автодоки.
FastAPI
from fastapi import FastAPI
app = FastAPI()
@app.get("/items/{item_id}")
async def read(item_id: int):
return {"id": item_id}
Доки на /docs автоматически.
Async + типы + автодоки.
from fastapi import FastAPI
app = FastAPI()
@app.get("/items/{item_id}")
async def read(item_id: int):
return {"id": item_id}
Доки на /docs автоматически.