Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dash: Multi-page app with same data across pages

I'm following the guidance to create a multi-page app in the dash documentation: https://dash.plotly.com/urls

My issue is that the data is in a total of four dataframes, and each of the three pages in my app uses more than one of these to visualize content. I'm trying to avoid reloading the dataframes each time I call one of the pages. Is this possible? How?

Currently, I'm trying to first load the df's using a function in my index.py, then load the other pages:

df_fz, df_md, df_auf, df_mat = get_dfs()
from apps import app1, app2, app3

[...]

@app.callback(Output('page-content', 'children'),
              [Input('url', 'pathname')])
def display_page(pathname):
    if pathname == '/app1':
        return app1.layout
    elif pathname == '/app2':
        return app2.layout
    else:
        return app3.layout

Each of app1 to app3 uses the dataframes as if they were loaded at the top of their scripts, but this code as is is throwing an error because the df's are not defined. A minimal example of what app3 could look like:

layout = html.Div([
    html.H3('App 3'),
    dcc.Dropdown(
        id='app-3-dropdown',
        options=[
            {'label': 'App 3 - {}'.format(i), 'value': i} for i in [df_fz.Value]
        ]
    ),
    html.Div(id='app-3-display-value'),
])

@app.callback(
    Output('app-3-display-value', 'children'),
    [Input('app-3-dropdown', 'value')])
def display_value(value):
    return 'You have selected "{}" but in App 3'.format(value)
like image 415
Chris Schmitz Avatar asked Oct 15 '25 04:10

Chris Schmitz


1 Answers

Looks like all you need to do is create a module that has your data that can be shared across different files.

data.py

import pandas as pd
df1 = pd.DataFrame()

app1.py

from data import df1

app2.py

from data import df1

module variables are global variables, so all of your files will be sharing the same df1, and since it's an import it'll run before the rest of your code in app, app1, etc.

You could also leave id='app-3-dropdown', options=[] at the start and then create the options list as a callback for 'app-3-dropdown'.

You can store your dataframe in dcc.Store(id='df-data', data=df.to_dict()), and that can be used as an Input or State for your other callbacks.

like image 194
Troy D Avatar answered Oct 18 '25 05:10

Troy D