Neony
Reactive desktop UI framework for Python, built on LumiView.
📖 Docs (latest release): https://harcic.is-a.dev/neony · 中文
These hosted docs track the latest tag (
v0.2.0). For the latest commit (in-repodocs/), seedocs/—docs/README.en.md,getting-started,api/ chapters.
Overview
Status: pre-beta — the API is still settling. Feedback and contributions are welcome.
Neony renders a reactive DOM in a native window. You compose your UI from Python objects — components, layouts, styles — and Neony diff-updates the browser DOM automatically. Application code does not need to write HTML or JavaScript.
It builds on LumiView, which uses the same Rust
tao/wry webview stack as Tauri.
- Pure Python API — components, layouts and events; no HTML or JavaScript in application code
- Fine-grained reactivity —
Signal/Computed/Effectprimitives with declarative bindings - Dirty-subtree diffing — only changed elements re-serialize; unchanged subtrees reuse cached snapshots
- Style direct-patch — pure style/attr changes (hover, focus, press) patch straight from the snapshot cache, skipping serialization and diff
- Same stack as Tauri — Rust
tao/wrywebviews via LumiView - 3 theme presets — dark / light / deep-blue via CSS custom properties
- (Optional) Frosted glass — translucent surfaces with backdrop blur
- Colour-matched glow — focus rings and hover glows tinted with each element's semantic colour
- Scroll indicator — native scrollbars are hidden; scroll surfaces get a theme-matched floating thumb (faint at rest, strengthens on scroll/hover, draggable, click-to-page) plus a dynamic edge fade that only shows where content actually overflows
- Custom window chrome — frameless, transparent, custom TitleBar
- (Supported platform only) Native window effects — blur / acrylic / mica materials
Installation
pip install neony
Requires Python 3.11+ and the platform WebView stack (WebKitGTK on Linux,
WebView2 on Windows, WKWebView on macOS). Linux development and verification
primarily target Wayland; X11 is not a complete support target at this stage.
See the installation and platform guide
for system packages and troubleshooting. The system tray needs
libayatana-appindicator on Linux.
Quick Start
from neony.application import Page, launch
from neony.application.elements import Button, Heading, Text, VStack
from neony.dom import Signal
clicks = Signal(0)
counter = Button("Click me")
counter.bind_text(clicks, fmt=lambda count: f"Clicked {count} times!" if count else "Click me")
counter.on_click(lambda _event: clicks.update(lambda count: count + 1))
page = Page(gap="16px").add(
VStack(
Heading("Hello, Neony", level=1),
Text("Build desktop UI in pure Python.", role="secondary"),
counter,
gap="12px",
)
)
launch(page, title="My App", width=480, height=360, devtools=True)
Components
Import from neony.application.elements.
| Component | Description |
|---|---|
Button |
Themed push button — primary / ghost / danger variants, hover & press feedback |
Checkbox |
Custom-styled checkbox with label and change event |
Radio / RadioGroup |
Mutual-exclusion radio options with group change carrying the value |
Switch |
Track + thumb toggle built on a native checkbox |
Select |
Themed dropdown — str or (value, label) options |
ComboBox |
Editable text with a themed suggestion popup |
Slider |
Slider with animated accent fill — stepped or stepless (step="any") |
Progress |
Progress bar with animated fill — determinate or sliding indeterminate |
Dialog |
Fixed scrim + centered glass panel — scrim / Escape / ✕ / click-away close |
PromptDialog |
Single-field text prompt on top of Dialog — confirm / cancel, Enter / Escape |
Tooltip |
Hover bubble wrapped around an anchor, placement offsets, hover delay |
Dropdown |
Themed popup under a trigger — full keyboard nav + click-away close |
Menu |
Fixed popup positioned at the cursor (open_at(x, y) from contextmenu) |
Toast |
Transient notifications at a screen edge — 6 placements, success/info/error, placement-tied directional animations |
Input |
Single-line text field — text / password / email / number… |
Heading |
Themed heading (h1–h6) with automatic sizing |
Text |
Inline body copy with semantic roles (primary / secondary / danger / success) |
Tabs |
Tab bar + panels, exactly one visible at a time — constructor children, selected_panel / selected_title / selected_key |
Accordion / Collapsible |
Expandable sections in one scroll flow — fluent .section(), multiple (default; multiple=False is exclusive), expanded_keys, on_change |
Tree / TreeNode |
Collapsible navigation tree + content host — arbitrary depth, fluent builders, leaf selection shows its panel on the right |
List / ListItem |
Scrollable single-select data list — listbox model, arrow keys move selection, selected_key / bind_selected |
DataTable / Column |
Column config + data rows — sticky header, click-to-sort, single / multi row selection |
Reorder / ReorderItem |
Drag-reorder board — any component/DOM element can be a card; direction + wrap makes a grid reorderable on both axes, multiple boards exchange cards |
Icon |
One icon — Icon.image(url_or_path) fixed-size square or Icon.glyph(text), shared by TitleBar / Sidebar / Tabs / Tree |
Flex |
Generic flex container with full control |
VStack / HStack |
Vertical / horizontal flex stacks |
Spacer |
Flexible empty space that absorbs leftover room |
Separator |
Subtle divider — horizontal (default) or vertical |
GlassPanel |
Frosted-glass container with optional background image |
TitleBar |
Custom window chrome for frameless windows — drag, minimize / maximize / close |
Sidebar / SidebarItem |
Vertical navigation owning its content panes — Pane, SidebarGroup sections, per-pane shortcuts; glass-matched to the TitleBar |
Pane |
Selectable Sidebar entry + content panel — key, icon, section, shortcut |
SidebarGroup |
Titled section of a Sidebar — small uppercase label above its items |
Image |
Themed image in a rounded, overflow-hidden frame (src is any URL) |
Avatar |
User avatar — image, letter initial, or placeholder, optional corner badge |
Badge |
Status pill or corner count — variants, status dot, 99+ clamp, zero hides |
Card |
Titled content panel — actions, footer, optional frosted-glass glass surface |
MessageBubble |
QQ/Telegram-style chat message — from_me alignment/colors, optional avatar + name, built-in right-click menu, hover quick actions |
NoticeBubble |
Centered system message pill for chat notices |
RichText |
Inline contenteditable editor — text + images, caret/selection API, insert at caret, content() segments, IME-safe, paste image files |
ScrollArea |
Scrollable vertical region with scroll_to_bottom() / scroll_to_top() / scroll_to() |
StickToBottom |
Chat-stream scroll container — auto-pins near the bottom; pauses on scroll-up, resumes near the bottom |
All components share a fluent, chainable API — see the API reference for usage.
Window Features
- Frameless custom titlebar — set
decorations=False, add aTitleBar, and drag / minimize / maximize / close all work automatically. Seedocs/api.en.mdand thedemo_custom_window.pydemo. - Transparent windows & native effects —
transparent=Trueautomatically applies the platform material (Wayland blur on Linux where the compositor supports it, Acrylic on Windows, Blur on macOS).apply_blur(),apply_acrylic(), andapply_mica()are manual overrides and are platform-limited (apply_bluris macOS/Windows; acrylic / mica are Windows 11). Seedemo_transparent_panel.py. - Programmatic window control —
set_title(),set_size(),minimize(),toggle_maximize(),close(), … all onNeonApplication, withwindow_index=0for multi-window apps. - Clipboard —
app.clipboard_write(text)/app.clipboard_read(). - Local resource URLs —
file_url()/data_url()for Windows paths, spaces, and non-ASCII filenames. - Internationalization — typed catalogs plus
tr/set_language(); bound labels update live on a language switch. - Multi-window —
run(*pages)opens one window per page, all sharing one event loop andapp.state.launch([...])accepts a list. Seedemo_multi_window.py. - System tray —
app.tray = Tray(icon, tooltip, items=[...])adds a tray icon with a native context menu;close_to_tray=Truehides the app instead of quitting on close. Linux needslibayatana-appindicator. Seedemo_tray.py. - Native file dialogs —
app.open_file(),app.open_files(),app.save_file(),app.select_folder()shell out to the platform's own picker — zenity on Linux,osascripton macOS, PowerShell on Windows, tkinter fallback — shown in an executor thread so the app keeps running while they're up (Noneon cancel,[]for a cancelled multi-select).
Theming
Three built-in presets — DARK (default), LIGHT, DEEP_BLUE — exposed as
CSS custom properties on :root. Switching themes replaces that variable
block only — no DOM diff; the browser recolors every var(--color-*).
Scrollbars and interaction glows (focus rings, hover halos) reference the
same tokens, so they follow theme switches too. See the
API reference for switching and custom themes.
Demos
Run from the repository root:
| File | Shows |
|---|---|
demo_hello.py |
Minimal first app (same as the Quick Start example) |
gallery package (uv run gallery) |
Component gallery with docs & code samples, glass TitleBar |
demo_custom_window.py |
Frameless window: TitleBar + Sidebar chrome |
demo_transparent_panel.py |
Floating transparent panel with native blur |
demo_multi_window.py |
Two windows sharing one app state |
demo_reactive.py |
Signal-based API: declarative bindings instead of manual refresh |
demo_accordion.py |
Accordion: expandable grouped sections in one scroll flow |
demo_tree.py |
Tree: collapsible navigation tree + content host |
demo_tray.py |
System tray: native menu + close-to-tray pattern |
demo_builder.py |
Centered Page mixing components with a raw styled Div |
uv run gallery
Roadmap
Planned work lives in ROADMAP.md — performance, events, lifecycle, components, animation, platform integration and verification.
Development
This project uses uv as the environment manager and runner.
uv sync --group dev # install dependencies (incl. dev tools)
uv run gallery # run the component gallery
uv run python scripts/check_all.py # run the full check suite (ruff / pyrefly / pytest / vitest)
scripts/check_all.py also runs the JavaScript tests (vitest + jsdom).
It runs npm ci automatically when node_modules/ is missing.
License
Apache-2.0 © HarcicYang
Release files for neony 0.2.3.post1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| neony-0.2.3.post1.tar.gz | 742.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| neony-0.2.3.post1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 1.4 MB
Release files / neony-0.2.3.post1.tar.gz
| Download URL | neony-0.2.3.post1.tar.gz |
|---|---|
| Size | 742.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
57126e7be12edada37c4dae5ad05972691f2681b2a32dac9cadb4462abbda86e
|
|
BLAKE2b-256 checksum How to use checksums |
06ff06cb3d9625b0a8349c91777e97e2277e5096a5c5a5c2cf29d9f7684fc510
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.
Transparency logRelease files / neony-0.2.3.post1-py3-none-any.whl
| Download URL | neony-0.2.3.post1-py3-none-any.whl |
|---|---|
| Size | 687.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
a4a8e1def883f4a3d86e9c160f0250a60747e9e92b3bf472c9d279a4e476d6a1
|
|
BLAKE2b-256 checksum How to use checksums |
0c2146ca0dec5b317b0dc94ea2eabc64c133106d6f91ecc77b6a3ef1088d2884
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 21, 2026.
Transparency log