pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
8 lines
173 B
8 lines
173 B
from fastapi import FastAPI, status
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.post("/items/", status_code=status.HTTP_201_CREATED)
|
|
async def create_item(name: str):
|
|
return {"name": name}
|
|
|