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.
19 lines
601 B
19 lines
601 B
from fastapi import Body, FastAPI, status
|
|
from fastapi.responses import JSONResponse
|
|
|
|
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: str = Body(None), size: int = 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)
|
|
|