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.
13 lines
391 B
13 lines
391 B
from fastapi import FastAPI, Response, status
|
|
|
|
app = FastAPI()
|
|
|
|
tasks = {"foo": "Listen to the Bar Fighters"}
|
|
|
|
|
|
@app.put("/get-or-create-task/{task_id}", status_code=200)
|
|
def get_or_create_task(task_id: str, response: Response):
|
|
if task_id not in tasks:
|
|
tasks[task_id] = "This didn't exist before"
|
|
response.status_code = status.HTTP_201_CREATED
|
|
return tasks[task_id]
|
|
|