Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
antagonico
/
jhonalex
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
79b7907
jhonalex
/
app.py
antagonico
Upload 3 files
49d0f22
over 1 year ago
raw
Copy download link
history
blame
Safe
176 Bytes
from
flask
import
Flask
app = Flask(__name__)
@app.route(
'/'
)
def
hello_world
():
return
'Hello, World!'
if
__name__ ==
'__main__'
:
app.run(host=
'0.0.0.0'
, port=
7860
)