Marc Compere
Marc Compere

Reputation: 343

What python visualization libraries support periodic callbacks in the browser?

The bokeh serve feature allows periodic callbacks that execute python code in the browser window at specified intervals. Do any of the other python visualization libraries like matplotlib or plotly or geoviews support this type of interactive updating in the browser window? By browser, I mean in a browser as a web page ready for deploying over the network, not Jupyter notebooks during development.

Upvotes: 0

Views: 67

Answers (1)

Wayne
Wayne

Reputation: 9909

Voila allows the interactive updating in a more general sense in that it isn't tied to any one python visualization library. You use ipywidgets to connect interactivity, output, and underlying Python code. For example, callbacks are discussed here. You can see a number of examples in the Voila gallery. I have some simpler examples here.

Someone had similar questions about bqplot here.

Upvotes: 1

Related Questions