Updating pandas data table

Can you update a pandas data table every time a user changes an input in a dash dataTable?

I am currently populating the dataTable with a pandas data table.

Yes - load the datatable to disk; make the table editable; each time you detect a change in the data of the table, save the current table to disk. Then the next time the page loads, pandas will detect the changes. If the data is large, I recommend using some shared memory space like Redis or Plasma.

Are you able to share a small bit of code for this… what would the callback look like?
Thank you,