Share your app
In addition to hosting, Datapane Cloud is designed to make it simple to securely share your app with your team.
Visibility
When you create an app, it can either be public or private. If an app is public, anybody with the URL can view it.
By default apps are private when you upload them, and cannot be accessed by anyone who is not a member of your workspace.
You can set these via the App Settings page, or in Python:
import datapane as dp
app = dp.App(...)
# Private App (Default)
app.upload(name='private app', publicly_visible = False)
# Public App
app.upload(name='public app', publicly_visible = True)
Workspaces
When you created your Datapane Cloud account, you will have named your Workspace, which allows you to securely collaborate with your team.
Note
Every Datapane Cloud account is a member of a workspace.
In order to securely share your reports, invite your team to your workspace in Workspace Settings -> Members.