Hi,
I’m connecting to firebase (a real time database), creating a global pandas DataFrame and using this to generate various plots.
All I want to do is re-run one query every x minutes to keep this DataFrame fresh but every example I’ve seen implies you either need to:
a) Run a seperate query in every callback
b) Convert the data to json and hide it in a div
I thought this would be straightforward to do without resorting to the above…am I missing something?
Thanks