Skip to main content

A little toolkit for writing UIs in PyScript

Project description

ltk

LTK is a little toolkit for writing web UIs in PyScript. For an explanation of PyScript and LTK, see YouTube.

For examples, see:

  • The LTK kitchensink for a live demo of all the widgets.
  • A Todo App that showcase declarative UIs using Reactive LTK.
  • A Slides Player that downloads a Google Slides presentation and shows it with LTK.
  • Why use LTK? See the pitch, written with LTK.
  • A personal website, chrislaffra.com, that uses several animations, SVG, styling, and timers to render a visual resume.
  • An animated Holiday card where PyScript logo tree ornaments are animated using Python code in the browser using LTK.
  • PySheets, a spreadsheet written in Python, using LTK.

LTK is implemented as a declarative Python library and leverages jQuery for DOM operations.

Installing LTK

Install LTK from pypi:

python3 -m pip install pyscript-ltk

Hello World

import ltk

ltk.Text("Hello World").appendTo(ltk.body)

Getting Started

To get started with LTK, we recommend you try it out on pyscript.com:

Widget Specification

New widget types are created by subclassing ltk.Widget:

class HBox(Widget):
    classes = [ "ltk-hbox" ]

By default, widgets are created as div DOM elements. You can choose a different tag:

class Preformatted(Widget):
    classes = [ "ltk-pre" ]
    tag = "pre"

Creating a UI

To create a UI, elements are constructed declaratively:

ltk.Table(
    ltk.TableRow(
        ltk.TableHeader("header1")
        ltk.TableHeader("header2")
    ),
    [
        ltk.TableRow(
            ltk.TableData(value1),
            ltk.TableData(value2),
        )
        for value1, value2 in data
    ],
)

Widgets are added to others by using jQuery's append and appendTo calls:

ltk.body.append(
    ltk.Table(...).element
)

container = ltk.VBox(...)
ltk.H1("This is a header").appendTo(container)

When an LTK widget is created, a corresponding jQuery element is attached to it in the ltk.Widget.__init__ constructor. It uses the tag value defined by the declaring class and the constructed element is referred to as element. As the append call is a JavaScript function, implemented by jQuery, we do not pass the LTK widget directly, but pass its element to append to the DOM.

Styling

Widgets can be styled using using three different approaches:

  1. Styling with element styles using jQuery's css function:
ltk.Text("Error: Flux capacitor low!")
    .css("background-color", "red")
    .css("color", "white")
    .css("padding", 8)
  1. Styling using a dict to make it easier to share styles:
error = {
    "background-color": "red",
    "color": "white",
    "padding": 8,
}
ltk.Text("Error: Flux capacitor low!", error)
  1. Styling using CSS classes and an external stylesheet, using jQuery's addClass function:
ltk.Text("Some text").addClass("my-special-text)

The external style sheet should have these rules:

.ltk-text {
    font-family: Arial;
}

.my-special-text {
    font-family: Courier;
    background-color: red;
    color: white;
    padding: 8px;
}

External stylesheets can be included in the original index.html or injected at runtime from Python using:

ltk.inject_style("https://example.org/awesome_styles.css")

Events

Event handlers are attached using jQuery mechanisms.

def buy(event):
    purchase(...)

ltk.Card("Buy Now").on("click", ltk.proxy(buy))

You can also use the more declarative decorator:

@ltk.callback
def buy(event):
    purchase(...)

ltk.Card("Buy Now").on("click", buy)

Examples

See the LTK kitchensink or explore the examples folder

Applications built using LTK

License

LTK is covered under the Apache License:

  • The Apache license is a permissive open source software license.

  • It allows users to freely use, modify, and distribute the software (including for commercial purposes).

  • Modified versions can be distributed without having to release the source code. Though source code changes should be documented.

  • The license requires modified versions to retain the Apache license and copyright notice.

  • The software is provided by the authors "as is" with no warranties.

  • Users are not granted patent rights by contributors, but contributors cannot revoke patent grants for previous contributions.

  • The license does not require derived works to adopt the Apache license. Though this is encouraged for consistency.

Upload new version to PyPi

If you never ran setuptools, twine, etc, on your machine do this:

python3 -m pip install --user --upgrade setuptools wheel twine build

To make a build, first increment the version in pyproject.toml:

[project]
name = "pyscript-ltk"
version = "0.1.22"

Then build the package into a source distribution and a Python wheel:

python3 -m build

Then verify whether the build works for pypi:

twine check dist/*

Then upload to the pypi test environment:

twine upload --repository pypitest dist/*

Finally, if the pypi test upload appears to work fine, run:

twine upload dist/*

Or, as a one-liner:

rm dist/* && python3 -m build && twine upload dist/*

If you get an error that a certain version already exists, check the contents of the dist folder.

Project details


Download files

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

Source Distribution

pyscript_ltk-0.2.30.tar.gz (41.0 kB view details)

Uploaded Source

Built Distribution

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

pyscript_ltk-0.2.30-py3-none-any.whl (38.9 kB view details)

Uploaded Python 3

File details

Details for the file pyscript_ltk-0.2.30.tar.gz.

File metadata

  • Download URL: pyscript_ltk-0.2.30.tar.gz
  • Upload date:
  • Size: 41.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for pyscript_ltk-0.2.30.tar.gz
Algorithm Hash digest
SHA256 55169d7f129bef4c5976d47ae2f94edd92040a10d216ca1abb8ed56ff8960d87
MD5 3143326ddfa14de87b9f3833f658991d
BLAKE2b-256 1cd68e037744f7dc25645ecd4a847ed3151d12e4d379df048981a0e83c44af60

See more details on using hashes here.

File details

Details for the file pyscript_ltk-0.2.30-py3-none-any.whl.

File metadata

  • Download URL: pyscript_ltk-0.2.30-py3-none-any.whl
  • Upload date:
  • Size: 38.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for pyscript_ltk-0.2.30-py3-none-any.whl
Algorithm Hash digest
SHA256 2a2a45477cfb2217b6cb35447e0d3120c20296e1b8a0d5d1021e5e96f6df9e37
MD5 1d09a3165a33b328f977ef48da47e615
BLAKE2b-256 949576c97bc6164f39dc01148d27c63202b6c513563e17ed2543f331c70eedbb

See more details on using hashes here.

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