Refresh Sheet Data Periodically
Change the data that is displayed in your spreadsheet.
Motivation
If the data you are displaying in the spreadsheet changes over time, you can update what is displayed in the sheet. Simply write to the data
parameter of the Mito spreadsheet.
Valid types for data
data
The data
parameter should be a list of dicts with strings as keys and values of type string, number, or boolean. For example, valid data might be:
You can go from Pandas dataframe to data
format with the following code:
Note that Mito aims to accept the same data
input as the Dash Data Table.
Examples
Change the data in the Mito spreadsheet on a time interval
Last updated