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.8.3.tar.gz (129.0 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.8.3-py3-none-any.whl (152.9 kB view details)

Uploaded Python 3

File details

Details for the file pyview_web-0.8.3.tar.gz.

File metadata

  • Download URL: pyview_web-0.8.3.tar.gz
  • Upload date:
  • Size: 129.0 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.8.3.tar.gz
Algorithm Hash digest
SHA256 dbc5e1e6d16ad5a4cb18f9082623e44de72f3ca8dbb83064a2012a68c4836ca3
MD5 bea0802859fd815535263ecd477b5293
BLAKE2b-256 008ba9b7241b8daeada48ef5adff953358b0712fe3b8f972e359333e87b506fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyview_web-0.8.3.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.8.3-py3-none-any.whl.

File metadata

  • Download URL: pyview_web-0.8.3-py3-none-any.whl
  • Upload date:
  • Size: 152.9 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.8.3-py3-none-any.whl
Algorithm Hash digest
SHA256 3d2014a0f110986fe4dc852fa59572243db8e95e032e835fcf6310e3459f62d0
MD5 cc3e6169b0309aaae8dab6789415e2ac
BLAKE2b-256 b5687da515f8b7d9d8c6a24d3501da53f77c400c5849defe03af743d3861cf88

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyview_web-0.8.3-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