Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
pranit144
/
flask1
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
flask1
/
app.py
bdjwhdwjb
Upload 3 files
25e4eef
verified
4 months 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
)