Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
markpeace
/
rise_ai
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
36b5fc0
rise_ai
/
app.py
markpeace
updated
a5d3f65
about 1 year ago
raw
Copy download link
history
blame
Safe
193 Bytes
# app.py
from
flask
import
Flask
app = Flask(__name__)
@app.route(
"/"
)
def
hello_worlds
():
return
"hello thereffdddfff"
if
__name__ ==
'__main__'
:
app.run(debug=
True
, host=
'0.0.0.0'
)