python - Does a plotly dash dashboard publish data online? -
i confused privacy of plotly , dash hosted locally through flask.
given project of hosting dash dashboard flask users on local network:
if deploy dash app using flask server per user guide deployment (https://plot.ly/dash/deployment), i.e.:
import flask import dash server = flask.flask(__name__) app = dash.dash(__name__, server=server)
if serve data dash app, published online anywhere (i.e. plotly website)?
what if create graph such plotly.graph_objs.figure
in dash_core_components.graph
? data served figure published online? or have specify using plotly.offline.plot
ensure doesn't connect external server, similar notebook using plotly?
the documentation indeed bit confusing. based on 4 points below assume no data uploaded cloud.
your flask app needs explicitly uploaded cloud, otherwise nothing happen (https://plot.ly/python/create-online-dashboard/#upload-dashboard).
in addition don't need plotly account create
dash
app, need account upload graph.dash
works locally without internet connection, no data can uploaded- there no code indicating upload in
dash
code
Comments
Post a Comment