Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
Duplicated from
yangtb24/sone-latest
bufe
/
sun
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
yangtb24
commited on
Dec 10, 2024
Commit
4d3fe36
·
verified
·
1 Parent(s):
8302712
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 hello():
7
+
return "Hello from o100!"
8
+
9
+
if __name__ == "__main__":
10
+
app.run(debug=True)