FastAPI Events
Kludex
FastAPI Events
Today, we'll talk about the FastAPI events: "startup" and "shutdown".
The events are part of the [ASGI specification][asgi-specification], and they are called "lifespan" events.
Events
The "startup" event is triggered when the application starts.
Here's an example of a simple "startup" event:
from fastapi import FastAPI
app = FastAPI()