Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
giswqs
/
Streamlit
like
81
Running
App
Files
Files
Community
8
Fetching metadata from the HF Docker repository...
refs/pr/8
Streamlit
/
app.py
subhanali12
Upload 4 files
870b88c
verified
22 days ago
raw
Copy download link
history
blame
190 Bytes
from
flask
import
Flask, render_template
app = Flask(__name__)
@app.route(
'/'
)
def
home
():
return
render_template(
'h.html'
)
if
__name__ ==
'__main__'
:
app.run(debug=
True
)