Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
sahanind
/
ubot1
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
ubot1
/
app.py
sahanind
Upload 96 files
e7ef6c8
verified
5 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
157 Bytes
from
flask
import
Flask
app = Flask(__name__)
@app.route(
"/"
)
def
hello_world
():
return
"Hello from Koyeb"
if
__name__ ==
"__main__"
:
app.run()