Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
HYeungLee
/
TAPTR
like
4
Running
App
Files
Files
Community
main
TAPTR
/
app.py
HYeungLee
Update app.py
adfe783
verified
28 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
216 Bytes
from
flask
import
Flask, render_template
app = Flask(__name__)
@app.route(
"/"
)
def
index
():
return
render_template(
"index.html"
)
if
__name__ ==
"__main__"
:
app.run(debug=
False
, port=
7860
, host=
"0.0.0.0"
)