Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Hugorowan
/
BardJukebox
like
2
Paused
App
Files
Files
Community
1e3d6f4
BardJukebox
/
app.py
Hugorowan
Update app.py
1e3d6f4
over 1 year ago
raw
Copy download link
history
blame
234 Bytes
from
flask
import
Flask
app = Flask(__name__)
@app.route(
"/"
)
def
hello_world
():
return
"Hello, World!"
@app.route(
"/app"
)
def
call_app
():
import
App
return
App.hello_world()
if
__name__ ==
"__main__"
:
app.run(debug=
True
)