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.
12 lines
344 B
12 lines
344 B
from fastapi import FastAPI
|
|
from fastapi.responses import JSONResponse
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.post("/cookie/")
|
|
def create_cookie():
|
|
content = {"message": "Come to the dark side, we have cookies"}
|
|
response = JSONResponse(content=content)
|
|
response.set_cookie(key="fakesession", value="fake-cookie-session-value")
|
|
return response
|
|
|