fasthtml_testing / main.py
sd99's picture
deploy at 2024-09-21 17:13:28.905271
e4b6d2e verified
raw
history blame
261 Bytes
from fasthtml_hf import setup_hf_backup
from fasthtml.common import *
app,rt = fast_app()
@rt('/')
def get(): return Div(P('Hello World!'), hx_get="/change")
setup_hf_backup(app)
if __name__ == '__main__': uvicorn.run("main:app", host='0.0.0.0', port=7860)