Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
zhzabcd
/
awawaaa
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
awawaaa
/
app.py
zhzabcd
Update app.py
76a7639
verified
3 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
202 Bytes
from
flask
import
Flask, render_template
app = Flask(__name__)
@app.route(
'/'
)
def
index
():
return
render_template(
'index.html'
)
if
__name__ ==
'__main__'
:
app.run(host=
"0.0.0.0"
, port=
5000
)