Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
yangtb24/sone
yangtb24
/
sone-latest
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
cf2a013
sone-latest
/
app.py
yangtb24
Create app.py
4d3fe36
verified
3 months ago
raw
Copy download link
history
blame
Safe
159 Bytes
from
flask
import
Flask
app = Flask(__name__)
@app.route(
"/"
)
def
hello
():
return
"Hello from o100!"
if
__name__ ==
"__main__"
:
app.run(debug=
True
)