Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
NBayer
/
docker-test
like
0
Runtime error
App
Files
Files
Community
NBayer
commited on
Mar 9, 2023
Commit
37884a1
•
1 Parent(s):
f65a567
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+10
-0
app.py
ADDED
Viewed
@@ -0,0 +1,10 @@
1
+
from flask import Flask
2
+
3
+
app = Flask(__name__)
4
+
5
+
@app.route("/")
6
+
def index():
7
+
return "Hello Flask users here on HF Spaces"
8
+
9
+
if __name__ == "__main__":
10
+
app.run()