Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
LovnishVerma
/
flasktestapp
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
LovnishVerma
commited on
Jul 1
Commit
8acea85
·
verified
·
1 Parent(s):
746ae34
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
from flask import Flask
2
+
app = Flask(__name__)
3
+
4
+
@app.route('/')
5
+
def home():
6
+
return "Hello from Flask on Hugging Face!"
7
+
8
+
if __name__ == '__main__':
9
+
app.run(host='0.0.0.0', port=7860)