Skip to main content

PyWebWinUI3

PyWebWinUI3 is a Windows desktop UI framework that combines:

  • a Python backend
  • a pywebview host window
  • a Svelte frontend rendered inside Edge WebView2
  • an XAML-like page format for declaring UI

The goal is to make desktop apps feel like WinUI3-style apps while still being driven from Python.

What It Does

PyWebWinUI3 lets you:

  • declare pages in XAML-like markup
  • bind controls to Python values
  • react to value changes and lifecycle events from Python
  • serve a bundled frontend from the Python runtime
  • keep a Windows-style shell with theme and accent synchronization

At runtime, Python owns the application state, pywebview hosts the window, and the Svelte app renders the page tree loaded from the bundled frontend.

Platform

PyWebWinUI3 is currently aimed at Windows.

Runtime dependencies:

  • pywebview
  • hPyT

Installation

pip install PyWebWinUI3

Quick Start

from pywebwinui3.core import MainWindow
from pywebwinui3.type import Status

app = MainWindow("PyWebWinUI3")

app.addSettings("Settings.xaml")
app.addPage("Dashboard.xaml")
app.addPage("Test.xaml")

app.values["test_input"] = "Hello, world"
app.values["test_switch"] = False

@app.onValueChange("test_noticeSample")
def show_notice(*_):
    app.notice(Status.Attention, "Title", "This is a sample notice")

app.start()

Minimal Page Example

<Page path="settings" icon="&#xE713;" name="Settings" title="Settings">
	<Box>
		<Horizontal>
			<Text>App theme</Text>
			<Space />
			<Select value="system_theme">
				<Option value="dark">Dark</Option>
				<Option value="light">Light</Option>
				<Option value="system">Use system setting</Option>
			</Select>
		</Horizontal>
	</Box>
</Page>

Core Concepts

MainWindow

pywebwinui3.core.MainWindow is the main entry point.

Important methods:

  • addPage(...)
  • addSettings(...)
  • start(debug=False, hidden=False, on_top=None, width=None, height=None, min_width=900, min_height=600)
  • notice(level, title, description, item=None)
  • pin(state)
  • syncValue(key, value)

values

app.values is the shared state dictionary between Python and the frontend.

Typical usage:

app.values["user_name"] = "Haruna"
app.values["is_enabled"] = True
app.values["progress"] = 50

The frontend reads these values directly, and user input writes back into the same store.

Built-in system values include keys such as:

  • system_title
  • system_icon
  • system_theme
  • system_accent
  • system_pages
  • system_settings
  • system_nofication
  • system_pin

Events

MainWindow exposes decorator-style event hooks:

  • @app.onValueChange(key)
  • @app.onAccentColorChange()
  • @app.onSetup()
  • @app.onExit()

Example:

@app.onValueChange("user_name")
def on_user_name_change(*_):
    print(app.values["user_name"])

Notifications

Use app.notice(...) to push InfoBar-style messages into the frontend.

from pywebwinui3.type import Status

app.notice(Status.Success, "Saved", "Settings were saved successfully")

Status values:

  • Status.Attention
  • Status.Success
  • Status.Caution
  • Status.Critical
  • Status.Neutral

Markup Model

Pages are loaded into a JSON tree and rendered by the frontend.

Common tags currently implemented:

  • Page
  • Box
  • Horizontal
  • Vertical
  • Text
  • Button
  • Input
  • Slider
  • Switch
  • Check
  • Radio
  • Select
  • Option
  • Image
  • Webview
  • Progressbar
  • Line
  • Space
  • Expender
  • If
  • Match
  • Repeat

Binding Model

PyWebWinUI3 supports two main binding styles:

  • direct value binding through attributes like value="test_input"
  • formatted text / expressions inside strings such as {user_name}

The frontend compiles and caches formatted expressions, while Python remains the source of truth for state.

Path-like targets such as nested array access are also handled by the runtime value system when used by supported controls.

Resource Resolution

Relative resource paths are resolved from the Python caller's directory first, then from the packaged frontend bundle directory.

This lets you write things like:

  • local XAML files via addPage("Dashboard.xaml")
  • local images in markup
  • bundled web assets shipped with the package

External URLs such as https://... and file://... are passed through as-is.

Window / Shell Behavior

The desktop shell is implemented with pywebview and provides:

  • a hidden-title-bar host window
  • theme and accent synchronization with Windows
  • always-on-top pinning
  • a pywebview API bridge between Python and the frontend
  • direct bundled frontend hosting from pywebwinui3/web/

Project Structure

PyWebWinUI3/
├─ pywebwinui3/
│  ├─ core.py        # public API, app state, pywebview host
│  ├─ util.py        # XAML loader, sync dict, accent watcher
│  ├─ event.py       # event system
│  ├─ type.py        # status and theme resource constants
│  └─ web/           # built frontend bundle shipped to users
├─ frontend/         # Svelte source
├─ example/          # sample application and XAML pages
└─ setup.py

Development Notes

If you are only using the package, you do not need to build the frontend manually.

If you are working on the framework itself:

  • Python runtime code lives in pywebwinui3/
  • Svelte source lives in frontend/
  • the distributable frontend bundle lives in pywebwinui3/web/

Example

See:

  • example/example.py
  • example/Settings.xaml
  • example/Dashboard.xaml
  • example/Test.xaml

License

Apache-2.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pywebwinui3-1.2.6.tar.gz (3.2 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pywebwinui3-1.2.6-py3-none-any.whl (3.3 MB view details)

Uploaded Python 3

File details

Details for the file pywebwinui3-1.2.6.tar.gz.

File metadata

  • Download URL: pywebwinui3-1.2.6.tar.gz
  • Upload date:
  • Size: 3.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pywebwinui3-1.2.6.tar.gz
Algorithm Hash digest
SHA256 6bde505157cb1406939244109ed6f43108b33f9d9aa7ff27f045c7218579f8a7
MD5 c8b58e0f622bc3170a22b247e9f08c73
BLAKE2b-256 41b62459e5586e9223d10fb8e3508ae297d67abe8625a6956d2ef237367382c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for pywebwinui3-1.2.6.tar.gz:

Publisher: deploy.yaml on Haruna5718/PyWebWinUI3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pywebwinui3-1.2.6-py3-none-any.whl.

File metadata

  • Download URL: pywebwinui3-1.2.6-py3-none-any.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pywebwinui3-1.2.6-py3-none-any.whl
Algorithm Hash digest
SHA256 24e9d37b0bd9fec9c4987732ab26d9c4b90db85f6a695fa2351de2b8cd432dc4
MD5 d54dc62eb697e77672525e279fe2cff4
BLAKE2b-256 c1ba7721f5d70582c69a221209ee84de7d9b87288fdf4bd4768f9ea743bc30e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pywebwinui3-1.2.6-py3-none-any.whl:

Publisher: deploy.yaml on Haruna5718/PyWebWinUI3

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

1.2.6 This release

2 files

1.2.5

2 files

1.2.4

2 files

1.2.3

2 files

1.2.2

2 files

1.2.1

2 files

1.2.0

2 files

1.1.0

2 files

1.0.3

2 files

1.0.2

2 files

1.0.1

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page