Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Sadashiv
/
new-app
like
0
Running
App
Files
Files
Community
3112ece
new-app
/
app.py
Sadashiv
Update app.py
3112ece
over 1 year ago
raw
Copy download link
history
blame
Safe
206 Bytes
from
flask
import
Flask, render_template
app = Flask(__name__)
@app.route(
'/'
)
def
home
():
return
render_template(
'index.html'
)
if
__name__ ==
"__main__"
:
app.run(host=
"0.0.0.0"
, port=
7860
)