Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
pranit144
/
flaskdock
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
flaskdock
/
app.py
bdjwhdwjb
Upload 3 files
333ecad
verified
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
170 Bytes
from
flask
import
Flask
app = Flask(__name__)
@app.route(
'/'
)
def
hello_world
():
return
'Hello, World!'
if
__name__ ==
'__main__'
:
app.run(debug=
True
)