Importing objects into multi user environment

Hi,

I am building a multipage app which needs a lot of different data (multiple dfs, geojsons etc.) and am wondering if my approach will break once multiple users are using the app.

I have an extra file (load_data.py) where all the data is put together, which works like this:

load_data.py

# create objects
DF1 = create_df1(...)
DF2 = create_df2(...)

I have my page layouts in different files which import the objects and use them in callbacks:

page1.py

from load_data import DF1, DF2

page2.py

from load_data import DF1, DF2

Am I going to have issues when ultimately there will be more people than just myself using my app?

Thank you!

If the data are not modified, but only read, from the callbacks, you should be OK.

Thats good to hear, thanks!