Quickly Build WebUI with Python.
Project description
wZony
Quickly Build WebUI with Python
Installation
Via Pip
pip install wZony
Quick Start
Rapid Construction with HBulider
from wzony import *
from wzony.HNodes import *
from wzony.HBulider import *
page=Page(
HTMLSet([
NavigationBar("Demo",[A("1",href="#1"),A("2",href="#2"),A("1",href="#3")]),
VStack(HTMLSet([
VStack(HTMLSet([
Span("Hello World!")
.text_align('left'),
]))
]))
])
)
HTML-Only Construction
from wzony import *
from wzony.HNodes import *
page=Html(HTMLSet([
Head(HTMLSet([
Meta(charset='utf-8'),
Link(href="./css.css",rel="stylesheet"),
])),
Body(HTMLSet([
Div(String("1234").wrapped(Sup())),
H1("Hello"),
Thead(HTMLSet([
String("1234"),
String("1234"),
]))
.style("color:red;")
]))
]))
Save as HTML
with open('./demo.html','w') as html:
html.write(str(page))
Integration with Django
from django.http import HttpResponse
from wzony import *
from wzony.HNodes import *
from wzony.HBulider import *
page=Page(
HTMLSet([
# ...
])
)
def demoPage(request):
return HttpResponse(page)
Examples
Student Roster
from wzony import *
from wzony.HNodes import *
from wzony.HBulider import *
class Person:
def __init__(self,name,age,gender,photo='./image.jpg'):
self.name=name
self.age=age
self.gender=gender
self.photo=photo
students=[Person("Tom",18,'Male'),Person("Alice",19,'Female'),Person("Ken",20,'Male')]
page=Page(HTMLSet([
NavigationBar("Students",[A("Roster",href="#").color('gray').text_decoration('none')]),
VStack(HTMLSet([
ForEach(students,lambda student: HTMLSet([
HStack(HTMLSet([
Img(student.photo)
.width('60px')
.border_radius('500px'),
VStack(HTMLSet([
Span(f"Name: {student.name}"),
Span(f"Age: {student.age}"),
Span(f"Gender: {student.gender}")
]))
]))
.width('100%')
.text_align('left')
.border_bottom('rgb(218, 218, 218) 1px solid')
.font_size('25px')
.padding_left('50px')
.justify_content('start'),
]))
])),
]),head=HTMLSet([
Title("Students")
]))
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
wzony-0.2.0.tar.gz
(10.7 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
wzony-0.2.0-py3-none-any.whl
(12.8 kB
view details)
File details
Details for the file wzony-0.2.0.tar.gz.
File metadata
- Download URL: wzony-0.2.0.tar.gz
- Upload date:
- Size: 10.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1dd6be8d9821a76f5e5e8c53a2e65b1c888a0618b5fab20594f87abf0ce5e44
|
|
| MD5 |
ade3cba0fb39f6e8f3cf904a5cc5aecb
|
|
| BLAKE2b-256 |
01a8047787750392bd4500e7528d3437c94be1aa35f3a4dcb11b4f048cc3179f
|
File details
Details for the file wzony-0.2.0-py3-none-any.whl.
File metadata
- Download URL: wzony-0.2.0-py3-none-any.whl
- Upload date:
- Size: 12.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
089c3973c0aa180b0f2566cee17f72b47f5f15d6c7f70630c315d31004843472
|
|
| MD5 |
a776682a42ef7b5a8910b7d1696e53d3
|
|
| BLAKE2b-256 |
c268ef1523d48ddadbc6b27fb21c9ef4449e5c0fd3a43d7fb3b81464d739fd12
|