Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
srivatsavdamaraju
/
server
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
586855e
server
/
main.py
srivatsavdamaraju
Update main.py
2081f7f
verified
11 months ago
raw
Copy download link
history
blame
218 Bytes
from
flask
import
Flask
app = Flask(__name__)
@app.route(
'/'
)
def
hello
():
return
"Hello, World! This is my Flask app running on Hugging Face!"
if
__name__ ==
'__main__'
:
app.run(debug=
True
, host=
'0.0.0.0'
)