Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
microsoft-cognitive-service
/
mm-react
like
236
Running
App
Files
Files
Community
8
d00e7d9
mm-react
/
AllInOneApp
/
flaskTest.py
JJteam
draft of dockerfile
acc4ffe
over 1 year ago
raw
Copy download link
history
blame
Safe
160 Bytes
from
flask
import
Flask
app = Flask(__name__)
@app.route(
'/'
)
def
index
():
return
'Web App with Python Flask!'
app.run(host=
'0.0.0.0'
, port=
7860
)