Citry is a fully typed frontend framework for Python with server events and Alpine.js. One component can own its HTML, browser behavior, CSS, translations, and Python event handlers, so you can build an interactive interface without maintaining a separate frontend application. It is inspired by Vue and Livewire.
Citry works with FastAPI, Django, Flask, Starlette, ASGI, and WSGI applications.
Citry 0.4 is the public beta. It supports Python 3.10 through 3.14.
Read the docs · Try the playground · Explore examples · Install the VS Code extension · Browse Citry UI
Install Citry:
python -m pip install citryOr add it to a uv project:
uv add citryDefine a component in ordinary Python. Typed inputs catch misspellings and
missing values, while template_data() chooses exactly what the template can
read:
from citry import Component
class Welcome(Component):
class Kwargs:
name: str
messages: list[str]
def template_data(self, kwargs, slots):
return {
"name": kwargs.name,
"messages": kwargs.messages,
}
def css_data(self, kwargs, slots):
return {"accent": "tomato"}
template = """
<section class="welcome">
<h1>Welcome back, {{ name }}!</h1>
<ul>
<li c-for="message in messages">
{{ message }}
</li>
<li c-empty>Nothing new yet.</li>
</ul>
</section>
"""
css = """
.welcome {
border-top: 3px solid var(--accent);
}
"""
html = str(
Welcome(
name="Ada",
messages=["Build finished", "Report ready"],
)
)
Components compose through HTML-like tags. Static inputs look like ordinary
HTML attributes; prefix an input with c- when its value is a Python
expression:
<main>
<c-Welcome name="Ada" c-messages="user.inbox" />
</main>
That is most of the template language:
<c-Name>renders a component or a built-in control-flow tag.- A
c-attribute evaluates a Python expression.
Continue with the step-by-step tutorial or read the template syntax guide.
Citry gives each part of an interface a clear home:
| What you need | What Citry provides |
|---|---|
| Reusable UI | Components, typed inputs, slots, composition, and error boundaries |
| Browser behavior | Alpine expressions, component JavaScript, CSS, and managed assets |
| Python interactions | Server events, forms, persistent State, and targeted HTML updates |
| Internationalization | Fluent catalogs, locale-aware formatting, and server/browser translations |
| Production control | Caching, HTML fragments, strict CSP support, CSRF hooks, and debug tooling |
| Editor help | Highlighting, completion, navigation, diagnostics, and safe formatting |
Learn these features through the component guides, Events documentation, and advanced guides.
Need ready-made application components? Install Citry UI for accessible forms, dialogs, navigation, feedback, data display, theming, and translated default labels:
python -m pip install citry-uiMount Citry on the web framework that already serves your application. For example, with FastAPI or Starlette:
from citry import citry
from citry.contrib.fastapi import mount
mount(app, citry)
citry.initialize()Citry includes adapters for:
| Host | Integration |
|---|---|
| FastAPI / Starlette | citry.contrib.fastapi.mount() |
| Django | citry.contrib.django.urlpatterns() |
| Flask | citry.contrib.flask.mount() |
| Any ASGI application | citry.contrib.asgi.asgi_app() |
| Any WSGI application | citry.contrib.wsgi.wsgi_app() |
The web-framework guide shows the right startup and routing setup for each host.
Want a complete project instead of an integration excerpt? Copy the FastAPI starter or choose from the standalone, Django, Flask, ASGI, and WSGI starter matrix. The collection also includes complete Project Board and HTMX integration demos. Each project has its own dependencies, lockfile, and tests. Every web starter includes a browser interaction powered by Citry Events. The HTMX demo uses HTMX for every request and page update.
The free Citry extension for VS Code understands the HTML, Python, JavaScript, CSS, and Fluent inside a component. It provides completion, hover help, navigation, references, diagnostics, and safe formatting. The same extension is available from Open VSX.
Citry also installs a command-line checker:
citry check --staticPoint it at an application for registered component contracts and template data:
citry --app myproject.app:citry_app checkSee the VS Code guide and CLI reference for setup and CI usage.
Point your agent at Citry's documentation index and your project's setup and test commands. The AI coding agents guide includes instructions for existing projects and explains the agent files included in the current starter projects. You do not need to install a Citry skill.
The current benchmark renders a large project page using Citry's documented performance optimizations:
* Citry uses simple and pure optimizations. See the
performance optimization guide.
- Citry takes 24.62 ms warmed, about 55% less time than django-components on this workload.
- Button, Icon and HeroIcon use
simple = True, giving up independent component identity and hooks while keeping their data callbacks live. - Django takes 11.67 ms warmed and Jinja2 7.21 ms. The scenarios emit different output and perform different component and browser-support work.
These are relative results from one machine. Read the published benchmark for the chart and interpretation, or the benchmark repository guide to reproduce it.
- Documentation
- Examples
- API reference
- Release notes
- Discord
- GitHub Discussions
- Issue tracker
- Contributing guide
- Sponsor Citry
Citry continues the component work begun in django-components and django-components/djc-core.

