Hello
I have been building a Jupyter dashboard where data updates often sometimes every few seconds. I want to show these changes live using widgets like sliders / dropdowns; without having to manually re-run the notebook each time.
I am looking for ideas on how to load live data into widgets while keeping everything smooth & responsive.
I know about basic ipywidgets
features like the @interact
decorator and some layout controls, but I am not sure how to refresh widget outputs automatically.
Are there good methods maybe using async updates, callbacks / custom widget code that let you push new data into widgets without manual steps? Checked Tutorial: Understanding Jupyter Notebook Widgets | Saturn Cloud Blog guide related to this and found it quite informative.
Also; while researching this, I came across what is Azure Databricks, which has its own widget system and integrates ipywidgets
for interactive notebooks. That made me wonder if some of those ideas could work in a regular Jupyter environment too. I would love to hear from anyone who has built live data dashboards in Jupyter & how they made them run smoothly.
Thank you !!