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...
80e94d4
fastHTML
/
app.py
vinay-jose
Create app.py
1334c63
verified
9 months ago
raw
Copy download link
history
blame
Safe
128 Bytes
from
fasthtml.common
import
*
app,rt = fast_app()
@rt(
'/'
)
def
get
():
return
Div(P(
'Hello World!'
), hx_get=
"/change"
)
serve()