Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
13nishit
/
AIML23_HelloWorld
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0d75a4c
AIML23_HelloWorld
/
app.py
13nishit
app.py
2ebea51
almost 2 years ago
raw
Copy download link
history
blame
Safe
192 Bytes
from
flask
import
Flask
app = Flask(_name_)
@app.route(
'/'
)
def
hello_world
():
return
'Hello, World! by Nishit Kashyap'
if
_name_ ==
'_main_'
:
app.run(host=
"0.0.0.0"
, port=
7860
)