pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
734 B
26 lines
734 B
from typing import Union
|
|
|
|
from fastapi import Body, FastAPI, status
|
|
from fastapi.responses import JSONResponse
|
|
from typing_extensions import Annotated
|
|
|
|
app = FastAPI()
|
|
|
|
items = {"foo": {"name": "Fighters", "size": 6}, "bar": {"name": "Tenders", "size": 3}}
|
|
|
|
|
|
@app.put("/items/{item_id}")
|
|
async def upsert_item(
|
|
item_id: str,
|
|
name: Annotated[Union[str, None], Body()] = None,
|
|
size: Annotated[Union[int, None], Body()] = None,
|
|
):
|
|
if item_id in items:
|
|
item = items[item_id]
|
|
item["name"] = name
|
|
item["size"] = size
|
|
return item
|
|
else:
|
|
item = {"name": name, "size": size}
|
|
items[item_id] = item
|
|
return JSONResponse(status_code=status.HTTP_201_CREATED, content=item)
|
|
|