summaryrefslogtreecommitdiff
path: root/hello.py
diff options
context:
space:
mode:
Diffstat (limited to 'hello.py')
-rw-r--r--hello.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/hello.py b/hello.py
new file mode 100644
index 0000000..504affe
--- /dev/null
+++ b/hello.py
@@ -0,0 +1,9 @@
+from htmtl import Htmtl
+
+
+def main():
+ Htmtl("<div>Hello World<span>asdasd<a>asd</a></span></div>").toHtml()
+
+
+if __name__ == "__main__":
+ main()