Subscriptions

Supporter

$5/mo

Posts about packages I maintain, and are related to my work.

Premium posts

Royal Supporter

$15/mo

Access to my posts about the Python world, exclusive discord server, and access to exclusive repository.

Premium posts
Discord server

Company Supporter

$50/mo

Posts about packages I maintain, and are related to my work.

Premium posts
Discord server

Royal Company Supporter

$150/mo

Access to my posts about the Python world, and exclusive discord server.

Premium posts
Discord server

Free

Free
Public posts

Newsletter

Marcelo Trylesinski

January 20
ยท
Premium
FastAPI Events

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:

```py from fastapi import FastAPI

app = FastAPI()