Sharing data between pages

Hello !
I’m building a multi page app with dash, and in one of them I’m using a file upload. How can I use the uploaded file in all the other pages ?

Thanks !

Hi @antonin45 and welcome to the Dash community :slightly_smiling_face:

If your files are small, you can use a dcc.Store component. You can find an example here:

Otherwise, you could use a database.

2 Likes