fastapi/docs_src/body_nested_models/tutorial009.py

11 lines
179 B
Python

from typing import Dict
from fastapi import FastAPI
app = FastAPI()
@app.post("/index-weights/")
async def create_index_weights(weights: Dict[int, float]):
return weights