Write declarative layouts in Python, today! π
pip install vdom
Features
- Helpers for svg elements available in
vdom.svg
from vdom.svg import svg, circle
svg(
circle(
cy=10,
cx=10,
r=10
),
height=20
)
- Introduce
button
,label
, andstyle
elements
Fixes
- void elements (like
img
,input_
) now prevent you from accidentally putting children on them (since that would be totally invalid)