Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
templates/http-server
thomasht86
/
fasthtml
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8a02447
fasthtml
/
app.py
thomasht86
min
8a02447
7 months ago
raw
Copy download link
history
blame
Safe
137 Bytes
from
fasthtml.common
import
*
app,rt = fast_app()
@rt(
'/'
)
def
get
():
return
Div(P(
'Hello World!'
), hx_get=
"/change"
)
serve(port=
7860
)