Here’s an example with flask: http://flask.pocoo.org/snippets/67/
Note that in that snippet “app
” is referring to the instance of flask
. You can access that instance in dash
with app.server
(where app
in this case is the instance of dash
: app = dash.Dash()
)