Skip to content

🚀Repeated Tasks

Choose a tag to compare

@priyanshu-panwar priyanshu-panwar released this 04 Oct 12:21
· 39 commits to master since this release
  • Repeated Tasks: Easily trigger periodic tasks on server startup.
from fastapi_utilities.repeat import repeat_every

@router.on_event('startup')
@repeat_every(seconds=3)
async def print_hello():
    print("hello")