Snapshotmain · 1a00120
An ASGI request passes through middleware and URL resolution into views, the ORM, templates, and a response.
Click a building or route
System map8 components · 9 connections
130%
Connections
BuildingsEntryServiceComputeStorageRuntimeToolingExternal
Terms, in plain English
ASGIThe asynchronous protocol between a Python web server and a Django application.
How to study this repo
- 1Enter through ASGI
Trace one server request into Django's shared handler machinery.
- 2Resolve a route
Follow path matching through nested resolvers to a class-based view.
- 3Evaluate a QuerySet
See when a lazy ORM query finally reaches a database backend.