Skip to content

Instantly share code, notes, and snippets.

View jonra1993's full-sized avatar
🎯
Focusing

Jonathan Vargas jonra1993

🎯
Focusing
View GitHub Profile
@jonra1993
jonra1993 / fastapi_globals.py
Last active March 23, 2023 17:24 — forked from ddanier/fastapi_globals.py
flask.g for FastAPI.
"""
This allows to use global variables inside the FastAPI application using async mode.
# Usage
Just import `g` and then access (set/get) attributes of it:
```python
from your_project.globals import g