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.
27 lines
725 B
27 lines
725 B
from typing import Union
|
|
|
|
from fastapi import BackgroundTasks, Depends, FastAPI
|
|
from typing_extensions import Annotated
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
def write_log(message: str):
|
|
with open("log.txt", mode="a") as log:
|
|
log.write(message)
|
|
|
|
|
|
def get_query(background_tasks: BackgroundTasks, q: Union[str, None] = None):
|
|
if q:
|
|
message = f"found query: {q}\n"
|
|
background_tasks.add_task(write_log, message)
|
|
return q
|
|
|
|
|
|
@app.post("/send-notification/{email}")
|
|
async def send_notification(
|
|
email: str, background_tasks: BackgroundTasks, q: Annotated[str, Depends(get_query)]
|
|
):
|
|
message = f"message to {email}\n"
|
|
background_tasks.add_task(write_log, message)
|
|
return {"message": "Message sent"}
|
|
|