Skip to main content

LiveView in Python

Project description

PyView

A Python implementation of Phoenix LiveView

PyView enables dynamic, real-time web apps, using server-rendered HTML.

Documentation: https://pyview.rocks

Source Code: https://github.com/ogrodnek/pyview

Installation

pip install pyview-web

Quickstart

There's a cookiecutter template available

cookiecutter gh:ogrodnek/pyview-cookiecutter

Live Examples

https://examples.pyview.rocks/

Other Examples

Simple Counter

See it live!

count.py:

from pyview import LiveView, LiveViewSocket
from typing import TypedDict


class CountContext(TypedDict):
    count: int


class CountLiveView(LiveView[CountContext]):
    async def mount(self, socket: LiveViewSocket[CountContext], _session):
        socket.context = {"count": 0}

    async def handle_event(self, event, payload, socket: LiveViewSocket[CountContext]):
        if event == "decrement":
            socket.context["count"] -= 1

        if event == "increment":
            socket.context["count"] += 1

    async def handle_params(self, url, params, socket: LiveViewSocket[CountContext]):
        if "c" in params:
            socket.context["count"] = int(params["c"][0])

count.html:

<div>
  <h1>Count is {{count}}</h1>
  <button phx-click="decrement">-</button>
  <button phx-click="increment">+</button>
</div>

Acknowledgements

  • Obviously this project wouldn't exist without Phoenix LiveView, which is a wonderful paradigm and implementation. Besides using their ideas, we also directly use the LiveView JavaScript code.

  • Thanks to Donnie Flood for the encouragement, inspiration, help, and even pull requests to get this project started! Check out LiveViewJS for a TypeScript implementation of LiveView (that's much more mature than this one!)

  • Thanks to Darren Mulholland for both his Let's Build a Template Language tutorial, as well as his ibis template engine, which he very generously released into the public domain, and forms the basis of templating in PyView.

Additional Thanks

Status

PyView is in the very early stages of active development. Please check it out and give feedback! Note that the API is likely to change, and there are many features that are not yet implemented.

Running the included Examples

Setup

uv sync

Running

uv run uvicorn examples.app:app --reload

Then go to http://localhost:8000/

uv Install

brew install uv

or

curl -LsSf https://astral.sh/uv/install.sh | sh

(see https://docs.astral.sh/uv/getting-started/installation/ for more details)

License

PyView is licensed under the MIT License.

Download files

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

Source Distribution

pyview_web-0.9.0a2.tar.gz (136.2 kB view details)

Uploaded Source

Built Distribution

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

pyview_web-0.9.0a2-py3-none-any.whl (161.0 kB view details)

Uploaded Python 3

File details

Details for the file pyview_web-0.9.0a2.tar.gz.

File metadata

  • Download URL: pyview_web-0.9.0a2.tar.gz
  • Upload date:
  • Size: 136.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyview_web-0.9.0a2.tar.gz
Algorithm Hash digest
SHA256 ec6601dfd52b83d428ba6fd4ff8a088bf978411bbdc6c8f99de13c3fbbdb9758
MD5 44829547b8a87bc5f23ea71b91ed1876
BLAKE2b-256 3b63367e9a520f386677007b74b73831e26d021c9ddb7a927469ae6d814ec444

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyview_web-0.9.0a2.tar.gz:

Publisher: release.yml on ogrodnek/pyview

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

File details

Details for the file pyview_web-0.9.0a2-py3-none-any.whl.

File metadata

  • Download URL: pyview_web-0.9.0a2-py3-none-any.whl
  • Upload date:
  • Size: 161.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pyview_web-0.9.0a2-py3-none-any.whl
Algorithm Hash digest
SHA256 3772ba4abc8701e2b96fef0888522fbe25481552050079147c2ee3ce11ce1d85
MD5 0e65345fa71202b466b08c94b49ff272
BLAKE2b-256 25cba658ca473c1c7bf0a16efa30eb442ce24afc02cdc6a615abfaacc35e5087

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyview_web-0.9.0a2-py3-none-any.whl:

Publisher: release.yml on ogrodnek/pyview

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page