Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
vinay-jose
/
fastHTML
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
vinay-jose
commited on
Aug 2, 2024
Commit
1334c63
·
verified
·
1 Parent(s):
9bb184b
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
from fasthtml.common import *
2
+
3
+
app,rt = fast_app()
4
+
5
+
@rt('/')
6
+
def get(): return Div(P('Hello World!'), hx_get="/change")
7
+
8
+
serve()