Show HN: Palestine – JavaScript-like DOM manipulation in Python
github.comfrom palestine import Document, Html, Body, Div, Text
doc = Document()
html = Html()
body = Body()
doc.append_child(html)
html.append_child(body)
page = Div(class_="container")
page.append_child(Text("Hello from Palestine"))
body.append_child(page)
print(doc)
https://github.com/u84u/palestine
1 thread
Can we create canvas randered games using this?