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