Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
cloudwp
/
DivineShroomMyceliumNetwork
like
1
Runtime error
App
Files
Files
Community
d8f94bc
DivineShroomMyceliumNetwork
/
app.py
cdvst
Initial commit for Hugging Face Space
374b8bc
about 2 months ago
raw
Copy download link
history
blame
Safe
177 Bytes
from
flask
import
Flask
app = Flask(__name__)
@app.route(
"/"
)
def
home
():
return
"Hello, Hugging Face Space!"
if
__name__ ==
"__main__"
:
app.run(host=
"0.0.0.0"
, port=
7860
)