Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ashutoshsharma58
/
deploy3
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ashutoshsharma58
commited on
Dec 1, 2023
Commit
818e78b
·
1 Parent(s):
8769212
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+8
-0
app.py
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
from flask import Flask
2
+
app = Flask(__name__)
3
+
@app.route('/')
4
+
def first():
5
+
return 'Hello Flask'
6
+
7
+
if __name__ == '__main__':
8
+
app.run()