Feed the data from an external drive into the dash app

Hi, I want a reference link about how to feed the data from an external drive into the dash app and use this data as input of python code and produce the desired output and download it.

hi @aru
Can you please provide an example of what you would like to do? I think a few more details would be helpful.
Thank you,

Hi Adam,

I want to build a plotly dash. In the dash, I will have a UI where I can upload my input CSV file. and then I will feed this input to the python code. Then I will build some plots based on the output and also I will download the output file as CSV from the dash. I will deploy the dash in heroku. Could you please assist me with this? Thank you.

Hi @aru
you can use dcc.upload to upload your csv sheet and then use the callback to create graphs with the data uploaded.
After the data is filtered or changed by the user, you can use the dcc.download component to save the new data into a csv sheet.