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...
13nishit
commited on
Apr 21, 2023
Commit
2ebea51
·
1 Parent(s):
a1c7721
app.py
Browse files
Files changed (1)
hide
show
app.py
+11
-0
app.py
ADDED
Viewed
@@ -0,0 +1,11 @@
1
+
from flask import Flask
2
+
3
+
app = Flask(_name_)
4
+
5
+
@app.route('/')
6
+
def hello_world():
7
+
8
+
return 'Hello, World! by Nishit Kashyap'
9
+
10
+
if _name_ == '_main_':
11
+
app.run(host="0.0.0.0", port=7860)