I have created a Dash app that reads a CSV file to produce a DashTable. The table is updated every 15 minutes using a batch process independant of the Dash app. When I reload the Dash app it still displays the old table even though the csv file has been updated by the batch program. To up date the Dash table I need to kill the Dash server and start it up again. Why is this and how can I change the app so that it sees the updated csv file.
Thank you