Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
pvanand
/
fastapi-dev-server
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
pvanand
commited on
Jul 25, 2024
Commit
449efb1
·
verified
·
1 Parent(s):
8d8a4fc
Delete main.py
Browse files
Files changed (1)
hide
show
main.py
+0
-11
main.py
DELETED
Viewed
@@ -1,11 +0,0 @@
1
-
2
-
from flask import Flask
3
-
4
-
app = Flask(__name__)
5
-
6
-
@app.route("/")
7
-
def hello_world():
8
-
return "<p>Hello, World!</p>"
9
-
10
-
if __name__ == '__main__':
11
-
app.run(debug=True, port=5000)