Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
eleeleai
/
fastapi
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
eleeleai
commited on
Oct 19, 2023
Commit
7f150a2
·
1 Parent(s):
09b5baf
Create main.py
Browse files
Files changed (1)
hide
show
main.py
+10
-0
main.py
ADDED
Viewed
@@ -0,0 +1,10 @@
1
+
from flask import Flask
2
+
3
+
app = Flask(__name__)
4
+
5
+
@app.route('/')
6
+
def hello_world():
7
+
return 'Hello, World!'
8
+
9
+
if __name__ == "__main__":
10
+
app.run()