Dcc.Download Dash

Hi,

I know there is component in dcc components Download, how can i download multiple files?

If it is just a few files, you could use multiple dcc.Download components. But that would trigger multiple popups for the user, which might be annoying. Another option would be to zip the files prior to download.

1 Like

Thanks a lot for your response, Problem is I give DashTable to user and user selects rows and based on that selection i will run query and download n number of excel files. I will try to combine them inside of zip.

Hi ShamkhalHajiyev

If the queries return little data, why not join them in a single excel using pandas merge.