Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hunthinn
/
portfolio
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
portfolio
/
app.py
hunthinn
create homepage
4d84648
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
194 Bytes
from
flask
import
Flask, render_template, url_for
app = Flask(__name__)
@app.route(
'/'
)
def
home
():
return
render_template(
'home.html'
)
if
__name__ ==
"__main__"
:
app.run(debug=
True
)