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:
moamen270
/
Test
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
moamen270
commited on
Dec 26, 2023
Commit
fe4d37d
·
1 Parent(s):
93d6584
Update test.py
Browse files
Files changed (1)
hide
show
test.py
+10
-0
test.py
CHANGED
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()