Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
yangtb24/sone
yangtb24
/
oai
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c088002
oai
/
app.py
yangtb24
Create app.py
4d3fe36
verified
2 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
)