Skip to main content

tempestweb

📚 Documentation: Português (Brasil) · English (US) — bilingual docs site (PT-BR default + EN-US), deployed to GitHub Pages. A linear Tutorial, an Advanced Guide, and a generated API reference covering every subpackage.

Build web apps in typed Python. One declarative widget tree, a DOM renderer, and three execution modes that share 100% of the application code: Mode A (WASM) runs your Python in the browser via Pyodide; Mode B (server) runs it on the server (FastAPI) and talks to a thin JS client over WebSocket or SSE; Mode C (transpile) transcribes your Python to native JavaScript — zero Python runtime, static hosting, great first-paint/SEO. Installable PWA, offline-first (service worker + IndexedDB), and WebPush are first-class — parity with tempest-react-sdk.

Sister project to tempestroid — same "one tree, multiple renderers" architecture. The renderer-agnostic engine (IR, reconciler, state, style, widgets) is shared; tempestweb adds a DOM leaf renderer (pure JavaScript, no framework, no build step, no TypeScript) and two patch transports.

Status

Published on PyPI and functional across all three modes — a working counter runs live under WASM, server, and transpile; the full test gate is green and every example builds. The transpile mode (C) is now a mature, first-class mode — 100% of tempest_core widgets, a wide typed-Python subset, and a full PWA story (installable, offline, WebPush). Only a handful of advanced constructs sit outside its subset, and the compiler fails early with file:line when you hit one. Design docs:

Want runnable apps? Browse the Example Gallery (PT-BR) — 46 single-concept demos (stopwatch, forms, data table/grid, kanban, chat, theming, i18n, canvas charts, app shells, native capabilities, observability, PWA/WebPush, a Mode C tour, and a server-mode walkthrough), each running unchanged across the execution modes.

Not a front-end developer? The ready-made screens (PT-BR) build an admin panel, dashboard, CRUD listing, settings form or login screen from typed data — no Style, no font size, no breakpoint. A whole panel in ~260 lines: see the Admin Console.

Building an admin panel? Skip the chrome with ready-made screens (PT-BR) — an admin shell, a KPI dashboard, a searchable list, forms and an auth screen, described with typed records instead of assembled widget by widget. They come with the responsive behaviour inline styles cannot express: a sidebar that collapses to a drawer, grids that reflow, a table that scrolls under a sticky header, and a print layout without the chrome. No CSS, no breakpoints of your own.

Building something real? Read the App architecture & best practices guide (EN) — the ideal layered structure (routes · pages · components · styles · controllers · services · storages · schemas · utils · core), mirroring tempest-fastapi-sdk, so your app doesn't rot into garbage code.

Get started

pip install "tempestweb[server,cli]"   # or: uv add "tempestweb[server,cli]"

tempestweb new myapp                   # scaffold app.py + tempestweb.toml
cd myapp
tempestweb dev                         # http://127.0.0.1:8000, hot-reload (wasm)

The scaffold's app.py exposes the two callables every project needs — make_state() and view(app) — and tempestweb.toml names the entrypoint (app.py by default, configurable). tempestweb dev runs any mode locally with hot-reload — pick the mode at dev/build time, never in the app:

tempestweb dev   --mode wasm       --path myapp   # Mode A: Python in the browser
tempestweb dev   --mode server     --path myapp   # Mode B: FastAPI + WebSocket
tempestweb dev   --mode transpile  --path myapp   # Mode C: native JS bundle
tempestweb build --mode transpile  --path myapp   # emit a static, CDN-servable bundle

dev serves all three modes with watch + reload — including Mode B (server), which rebuilds and restarts on every edit. To serve the built app without a watcher (production-like), use tempestweb run --mode server — it's what the generated deploy Dockerfile runs. Every command takes the project directory via --path (default: cwd) — not a positional .py file. Check your install with tempestweb --version.

Talking to a FastAPI backend? Generate a typed client from its OpenAPI spec — @dataclass models + service classes, one package per route group, working in all three modes (the Python analog of tempest-react-sdk's tempest gen api):

tempestweb gen api http://127.0.0.1:8000/openapi.json --out api

Full walkthrough: the Using the CLI, Generate a client from OpenAPI, Installation and Tutorial guides.

Code quality

You write typed Python, so the CLI polices that Python too. tempestweb check is the one-command gate — it runs ruff checkruff format --checkmypypytest against your project and stops at the first error:

tempestweb check                       # the full gate
tempestweb lint / fix / format / fmt-check / type / test   # individual steps

The gate layers opinion on top of your own ruff/mypy config via a strictness level — [quality] typing_strictness in tempestweb.toml (lenient | standard | strict, default standard, tempestweb new scaffolds it). It only adds rules, never loosens yours, and ANN401 is never enabled — Any is a valid annotation. --strictness overrides per invocation. Full details in the Code quality guide.

How it works

   view(app) ──build──▶ Node tree (IR) ──diff──▶ [ Patch ]   ← shared core (tempest-core)
                                                    │          insert/remove/update/reorder/replace
              ╭─────────────────┬───────────────────┤
       Mode A transport   Mode B transport     Mode C: transpile view() → native JS;
       (pyodide.ffi)      (WebSocket | SSE)     the core runs IN JS, patches in-process
              ╰─────────────────┴───────────────────╯
                  client/ (pure JS): apply patches to the DOM
                  + Style→CSS + event capture          ← same client code in every mode

The application's view() never names a transport — the same examples/counter/app.py runs under --mode wasm, --mode server and --mode transpile unchanged. Capabilities (native/) are typed awaitables with the same Python API in every mode — Mode A calls the Web API in-process, Mode B proxies it over a round-trip, Mode C routes to the same JS glue via an in-process facade (see docs/contract.md). Track T brings web-platform parity: beyond the core (http, audio, share, geolocation, clipboard, storage, camera, install, offline, notifications), the bridge now covers Tier 1 ( vibration, badge, wakelock, fullscreen, network, visibility, orientation, quota, rich clipboard, battery, sensors), Tier 2 (speech, recorder, filesystem, bgsync, tabs, idle), and Tier 3 / Chromium-only (bluetooth, usb, serial, hid, nfc, contacts, payment, pip, eyedropper, pointerlock, gamepad, midi, webaudio). A native event channel streams continuous capabilities (geolocation/network/ battery watch, sensors, STT, …) as typed async for iterators. See the capability reference (EN) and the event-channel guide.

Static SSR — render_to_html

Another render target, alongside the interactive modes: the same typed tree renders to a static HTML string on the server — no JavaScript, no DOM, no runtime. HTML is just another leaf renderer.

from tempest_core import Column, Text, Button, Style
from tempest_core import Edge
from tempestweb.html import render_to_html, render_document

tree: Column = Column(
    style=Style(gap=8.0, padding=Edge.all(16)),
    children=[Text(content="Hello"), Button(label="Click")],
)

fragment: str = render_to_html(tree)                 # an HTML fragment
page: str = render_document(tree, title="Home", htmx=True)  # a full document

The CSS is byte-identical to what the DOM client emits (the style_to_css port mirrors client/style.js), and the new tempest-core 0.9.0 Widget.tag / Widget.attrs fields let you emit semantic, htmx-ready markup (Container(tag="nav", attrs={"hx-get": "/x"})). All text/attributes are escaped. See the Static SSR guide (EN).

Mode C — transpile to native JS 🚀

The "TypeScript story" for Python: you write the typed-Python app; a compiler transcribes the app layer (state, view(), handlers) to native JavaScript, reusing the whole shared JS renderer. Zero Python runtime in the browser — static hosting, small bundle, great first-paint/SEO.

# examples/counter/app.py  (unchanged from Modes A/B)
@dataclass
class CounterState:
    value: int = 0

def view(app: App[CounterState]) -> Widget:
    def increment() -> None:
        app.set_state(lambda s: setattr(s, "value", s.value + 1))
    return Column(children=[
        Text(content=f"Count: {app.state.value}", key="label"),
        Button(label="+", on_click=increment, key="inc"),
    ])
from tempestweb.transpile import transpile_file

js: str = transpile_file("examples/counter/app.py")  # -> native ES module

The generated module runs on the native runtime (client/transpile/runtime.js) with a JS diff locked against a core-derived golden. Coverage is now 100% of tempest_core: all ~64 widgets, MD3 styling, state-with-methods, navigation (routes + URL), i18n, theme + responsiveness, native capabilities (http/storage/ cookies/…), field validators and both declarative and imperative animation. The tempestweb build/dev --mode transpile CLI emits a static, CDN-servable bundle that is a first-class PWA — installable and offline out of the box (manifest

  • cache-first service worker precaching the whole shell; customize via [pwa] in tempestweb.toml, or turn either half off with [pwa] enabled = false when the app is behind a login and gains nothing from precache).

See the canonical examples/transpile-tour — one app exercising the whole surface — and the guide (PT · EN). It is a first-class mode: only a handful of advanced constructs sit outside the typed subset (out-of-subset constructs fail loud with file:line).

Scaffold a PWA

tempestweb new myapp --template pwa    # Mode C: installable, offline PWA
tempestweb build --mode transpile --path myapp

The pwa template pre-configures mode = "transpile" + a [pwa] manifest block and ships a counter with an Install button. Omit --template for the plain counter starter that runs unchanged in all three modes.

WebPush (end-to-end)

Push works client-to-server out of the box. Generate VAPID keys, mount the router, subscribe from the client:

tempestweb vapid --env        # -> VAPID_PUBLIC_KEY=… / VAPID_PRIVATE_KEY=…
from fastapi import FastAPI
from tempestweb.server import VapidConfig, WebPushService, webpush_router

service = WebPushService(VapidConfig.from_env())
app = FastAPI()
app.include_router(webpush_router(service))   # /webpush/{subscribe,unsubscribe,send}

The client subscribes with native.notifications.subscribe(public_key) and POSTs the subscription to /webpush/subscribe; POST /webpush/send pushes to it. See the runnable examples/webpush-server.

Computer vision (ONNX)

pip install "tempestweb[vision]"   # pulls ort-vision-sdk + numpy
from tempestweb.vision import Detector, to_detection_schemas

det = await Detector.create("./models/yolov8n.onnx", labels="coco")
result = (await det.predict("./images/street.jpg"))[0]
for d in result:
    print(d.name, d.conf, d.box.xyxy)          # Ultralytics-style views
payload = to_detection_schemas(result)          # JSON for a tempest-fastapi-sdk backend

Classifier / Detector / Segmenter share the same input/output contract as ort-vision-sdk and tempest-fastapi-sdk's vision layer, but run the model over the native.onnx bridge (onnxruntime-web) so inference works in the browser — no onnxruntime wheel needed. Preprocessing, postprocessing and the .boxes/.probs/.masks result objects are ort-vision-sdk's, unchanged; only the model run crosses the (async) bridge, so construction and predict are awaited. See the Computer vision guide.

Data on the screen (query · export · access)

Three pure-Python layers between the widgets and the network — no browser needed, no dependency added.

from tempestweb.query import QueryCache, keys, offset_page, upsert_by_id

USERS, CACHE = keys("users"), QueryCache()

response = await CACHE.fetch(USERS.list(page=1), lambda: native.http.request("GET", "/api/users?page=1"))
page = offset_page(response.json)

with CACHE.optimistic(USERS.all(), lambda rows: upsert_by_id(rows, edited)):
    await native.http.request("PATCH", "/api/users/7", json=edited)   # rolls back if this raises

query keeps the read side: keys are tuples, so invalidation is by prefix (CACHE.invalidate(USERS.all()) reaches every cached page), concurrent reads of one key collapse into one request, and the optimistic block restores exactly what it replaced — no round trip to undo something the server never accepted.

export turns rows into CSV/XLSX bytes for native.file.save, closing the four holes a hand-rolled encoder always leaves — separator inside a field, quote inside the text, the missing BOM, and an XLSX date written as a bare number. access holds the role → permission map so the view can ask access.can("users:delete") instead of spreading if state.role == "admin".

:warning: access is not authorization. Hiding a button stops nobody from calling the endpoint behind it — the server decides, with the signing key.

See the Reading remote data, Export and Permissions guides.

Tabular inference (ONNX)

from tempestweb.tabular import TabularPredictor

PREDICTOR = TabularPredictor("/models/risk.onnx", manifest="/models/risk.json")
prediction = await PREDICTOR.predict({"age": 30, "income": 3200.0, "tenure_months": 18})
print(prediction.score, prediction.label, prediction.probabilities)

The sibling of vision, for the commonest kind of ML in a business app: a risk score, a demand forecast, a lead classification — running in the browser, so it still works offline.

The manifest is the point. An ONNX model is a function from an unlabelled vector of floats to a number, so the order carries all the meaning and nothing in the runtime checks it: a row written {"idade": 30} for a model trained on age reads a zero and answers a plausible, wrong score. With a manifest that becomes MissingFeatureError, naming the feature that is missing and the one that was sent instead. Training and export are a build step in a throwaway venv (uvx --with skl2onnx …), never a runtime dependency. See the Tabular guide.

Deploy (server mode)

tempestweb deploy --server-name app.example.com --tls    # -> deploy/
cd deploy && docker compose up --build

Generates a tailored nginx.conf (WebSocket upgrade, streaming timeouts, sticky ip_hash, optional TLS), a Dockerfile, docker-compose.yml and a DEPLOY.md. Harden the app with a SecurityConfig (auth, CORS, limits, rate limiting, headers) — see the Security and Deploy guides. Static modes (A/C) need no server — publish the build to any CDN.

Develop

uv venv && uv pip install -e ".[dev,server,cli]"
make check          # ruff + mypy + pytest + JS (jsdom) tests

Layout

Path What
Path What
--- ---
tempest-core (dependency) Renderer-agnostic engine — IR/reconciler/state/style/widgets (import tempest_core), extracted from tempestroid.
tempestweb/components/ Native fields + forms (EmailField, PasswordField, LoginForm, …) plus the re-exported tempest-core library of Material 3 components (Card, DataTable, Tabs, Drawer, Alert, BarChart/LineChart, …).
tempestweb/presets/ Ready-made screens built from data — panel, dashboard, listing, form, login.
tempestweb/transports/ The one seam between modes (base.py Protocol, wasm.py, websocket.py, sse.py).
tempestweb/html/ Static SSR leaf renderer — render_to_html / render_document / style_to_css (Python port of client/style.js).
tempestweb/transpile/ Mode C: ast-based Python→JS compiler for the app layer. Paired with the native runtime in client/transpile/ (diff.js · widgets.js · runtime.js).
tempestweb/server/ FastAPI + WebSocket/SSE host (Mode B).
tempestweb/native/ Web API capability adapters (Tracks N + T) — core (http, audio, share, geo, clipboard, storage, camera) plus web-platform parity (vibration, wakelock, fullscreen, network, sensors, bluetooth, usb, midi, …), image processing (imaging), device profile (device), and a streaming event channel (T-EV) consumed with async for.
tempestweb/query/ The read side of remote data — keyed cache, prefix invalidation, single-flight, pagination, optimistic updates with an exact rollback.
tempestweb/access/ Role → permission map and unverified token claims, so the view can decide what to draw. Not authorization.
tempestweb/export/ CSV and XLSX bytes generated in Python, for native.file.save to deliver. No dependency.
tempestweb/vision/ Classification, detection and segmentation over ONNX in the browser. Needs the [vision] extra.
tempestweb/tabular/ sklearn→ONNX inference over a row of numbers, with a feature manifest that stops a silently wrong prediction.
tempestweb/observability/ Telemetry, logger, error boundary, feature flags, auth — adapter pattern (Track O).
tempestweb/pwa/ Web App Manifest + icon emitter (Track P).
tempestweb/cli/ tempestweb new/dev/build/run/sync/gen.
client/ Pure-JS DOM renderer (incl. Canvas draw-command execution for charts), Style→CSS, event capture; pwa/ sw/ offline/ push/ native/ subdirs.
tests/fixtures/ Golden wire-format fixtures derived from the core.

Conventions

Python: double quotes, full typing (mypy --strict), Google docstrings in English, async-first. Client: plain JavaScript only — no TypeScript, no framework, no build step. See CLAUDE.md.

Download files

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

Source Distribution

tempestweb-0.121.0.tar.gz (904.1 kB view details)

Uploaded Source

Built Distribution

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

tempestweb-0.121.0-py3-none-any.whl (759.3 kB view details)

Uploaded Python 3

File details

Details for the file tempestweb-0.121.0.tar.gz.

File metadata

  • Download URL: tempestweb-0.121.0.tar.gz
  • Upload date:
  • Size: 904.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for tempestweb-0.121.0.tar.gz
Algorithm Hash digest
SHA256 fc4f211722a7f4bb67e54aa7fdda794d9cab5a7df21ad059856bc72446aaff91
MD5 b670be2dc53cac213b0f9ab613c42a6b
BLAKE2b-256 9a8c6232cd3c663cca808be126a843ed2cbb0a374dd5be6856166c61f810e6a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for tempestweb-0.121.0.tar.gz:

Publisher: publish.yml on mauriciobenjamin700/tempestweb

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

File details

Details for the file tempestweb-0.121.0-py3-none-any.whl.

File metadata

  • Download URL: tempestweb-0.121.0-py3-none-any.whl
  • Upload date:
  • Size: 759.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for tempestweb-0.121.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d2bac8b90e0df92b2d729a4f72b1dd05406d46d5a0e64856478e64008ce264cb
MD5 4d7434df8a99e24388fdfd4797b8f35b
BLAKE2b-256 e66172cec75af49e28b4a534bf02e7de140ebb4dcd86461f5a124917bcf6e21d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tempestweb-0.121.0-py3-none-any.whl:

Publisher: publish.yml on mauriciobenjamin700/tempestweb

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

0.121.0 This release

2 files

0.120.0

2 files

0.113.0

2 files

0.111.0

2 files

0.108.0

2 files

0.98.0

2 files

0.78.1

2 files

0.78.0

2 files

0.67.0

2 files

0.66.0

2 files

0.65.0

2 files

0.64.0

2 files

0.63.0

2 files

0.62.0

2 files

0.61.2

2 files

0.61.1

2 files

0.61.0

2 files

0.60.0

2 files

0.59.0

2 files

0.58.0

2 files

0.57.0

2 files

0.56.0

2 files

0.55.1

2 files

0.55.0

2 files

0.54.0

2 files

0.53.2

2 files

0.53.1

2 files

0.53.0

2 files

0.52.0

2 files

0.51.0

2 files

0.50.0

2 files

0.49.0

2 files

0.48.0

2 files

0.47.0

2 files

0.46.0

2 files

0.45.0

2 files

0.44.0

2 files

0.43.0

2 files

0.42.0

2 files

0.41.0

2 files

0.40.0

2 files

0.39.0

2 files

0.38.0

2 files

0.37.0

2 files

0.36.0

2 files

0.35.0

2 files

0.34.0

2 files

0.33.0

2 files

0.32.0

2 files

0.31.0

2 files

0.30.0

2 files

0.29.0

2 files

0.28.0

2 files

0.27.0

2 files

0.26.0

2 files

0.25.0

2 files

0.24.0

2 files

0.23.0

2 files

0.22.0

2 files

0.21.0

2 files

0.20.0

2 files

0.19.0

2 files

0.18.0

2 files

0.17.0

2 files

0.16.0

2 files

0.15.0

2 files

0.14.0

2 files

0.13.0

2 files

0.12.0

2 files

0.11.0

2 files

0.10.0

2 files

0.9.0

2 files

0.8.1

2 files

0.8.0

2 files

0.7.0

2 files

0.6.0

2 files

0.5.3

2 files

0.5.2

2 files

0.5.1

2 files

0.5.0

2 files

0.4.0

2 files

0.3.0

2 files

0.2.0

2 files

0.1.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