Build html / xhtml with a nice syntax.
- generate html / xhtml with a nice syntax
- have typing support
- have editor support for arguments, I used MDN as a reference.
- KISS: no more than generation
> pip install tagic
from tagic.html import *
print(
html[
head[
title["Example Website"],
meta(
name="description",
content="This is an example website build with tagic",
),
],
body[
header(id="header")[h1["Awesome"]],
main[p["Some text ", span["with tags"], "in between"]],
footer(hidden=True),
],
].render(indent=True)
)
Will return
<!DOCTYPE html>
<html>
<head>
<title>
Example Website
</title>
<meta content="This is an example website build with tagic" name="description" />
</head>
<body>
<header id="header">
<h1>
Awesome
</h1>
</header>
<main>
<p>
Some text
<span>
with tags
</span>
in between
</p>
</main>
<footer hidden>
</footer>
</body>
</html>
- dominate: missing the typing support and editor support for arguments
- domonic: to broad of a scope, with parsing, js and style and queries.
- domini: missing editor support for arguments
- htmler: missing the typing support and editor support for arguments
- PyHTML: missing the typing support and editor support for arguments
- pyhtmlgen: incomplete
- html: i do not like syntax and missing the typing support and editor support for arguments
- MarkupPy
- yattag: i do not like syntax
- py-microhtml: funny tag names and no editor support for arguments
- py3html: no editor support for arguments
- fast-html
- py2html not in pypi, but i like the syntax and took inspiration