Async Web Framework
Project description
Dazzler
Dazzler is a Python (>=3.6) async web framework. Create dazzling fast pages with a layout of python components and bindings to update from the backend.
Install
Install with pip: $ pip install dazzler
Basic example
Create a page with a layout and assign a binding to set the output component children when clicked on.
from dazzler import Dazzler
from dazzler.system import Page, Trigger, BindingContext
from dazzler.components import core
app = Dazzler(__name__)
page = Page(
'my-page',
core.Container([
core.Html('H2', 'My dazzler page'),
core.Input(identity='input', placeholder='Enter name'),
core.Button('Click me', identity='click-me'),
core.Container(identity='output')
])
)
app.add_page(page)
@page.bind(Trigger('click-me', 'clicks'))
async def on_click(context: BindingContext):
name = await context.get_aspect('input', 'value')
await context.set_aspect(
'output', children=f'Hello {name}'
)
if __name__ == '__main__':
app.start()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
dazzler-0.2.0.tar.gz
(1.6 MB
view details)
File details
Details for the file dazzler-0.2.0.tar.gz
.
File metadata
- Download URL: dazzler-0.2.0.tar.gz
- Upload date:
- Size: 1.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e61562f21b260469f8fbac5f18767eef58b3e09f0aaece98fc97558e2291dbfc |
|
MD5 | 0cf769aefed1cea5ac76b19ef8f3e33d |
|
BLAKE2b-256 | bc8d0ed4310097653bc950387750ef40f36d28780a9ff49abfd3dd0aa3706458 |