Код: Выделить всё
from fastapi import FastAPI, Request
import time
app = FastAPI()
@app.get("/ping")
async def ping(request: Request):
print("Hello")
time.sleep(5)
print("bye")
return {"ping": "pong!"}
Код: Выделить всё
Hello
bye
Hello
bye
< /code>
вместо: < /p>
Hello
Hello
bye
bye
Подробнее здесь: https://stackoverflow.com/questions/715 ... el-fashion