chirp
posts tagged with "chirp"
Chirp vs Flask vs FastAPI — When Free-Threading Matters
Chirp vs Flask vs FastAPI — concurrency models, when free-threading matters for Python web frameworks, and when it doesn't.
Chirp + Kida — AST-Driven Partial Rendering
Chirp doesn't hard-code which blocks to render as OOB. It asks the template. Kida's template_metadata() gives Chirp regions, dependencies, and cache scope — all from the AST.
Type-Driven Responses — How Chirp Eliminates make_response()
In Chirp, the return type is the intent. Template, Fragment, Page, Stream, Suspense, EventStream — each type maps to exactly one response shape. No conditionals. No make_response().
Chirp — A Web Framework Built for Free-Threaded Python
How Chirp achieves thread-safe request handling with ContextVar isolation, frozen config, and double-check locking — patterns for building web frameworks on free-threaded Python.