advent22/api/advent22_api/routers/abspacken.py
2022-10-09 00:40:20 +00:00

51 lines
1.1 KiB
Python

import asyncio
from fastapi import APIRouter, HTTPException, status
router = APIRouter(prefix="/abspacken", tags=["abspacken"])
async def get_kurix(kgs: float) -> float:
# die berechnung ist sehr aufwändig, braucht lange!
await asyncio.sleep(2)
return kgs / 1.13
@router.post("/uwe")
async def uwe(
kgs: float = 10,
firma: str = "Vodafone"
) -> str:
kurix = await get_kurix(kgs)
return f"UWE hat bei {firma} einen beachtlichen Haufen von " \
f"{kgs} Kg ({kurix:.3f} Kurix) auf den Läufer geschissen."
@router.get("/torsten/{ding}")
async def torsten(ding: str) -> str:
return "Der Alphakevin Torsten hat ein " f"langes {ding}."
@router.get(
"/kys",
responses={
status.HTTP_200_OK: {
"description": "Success",
"content": None,
},
status.HTTP_418_IM_A_TEAPOT: {
"description": "Commit Sudoku",
"content": None,
}
}
)
async def kys() -> None:
"""
Sinnlose Todesdrohungen.
Heiße Botschaften aus der Nachbarschaft warten auf Sie.
"""
raise HTTPException(status.HTTP_418_IM_A_TEAPOT, "Go kill yourself")