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.


Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -