By calling show, you are creating a standalone HTML/JS document that is not connected to any persistent python process. So there is nothing to run your Python callback. Use of real python callbacks requires running on the Bokeh server (that is the purpose of the Bokeh server, to be the thing that runs real Python callbacks). You can find more information about the bokeh server here:
I'm new in Bokeh and I make some project with node analyzer for interesting. And I find this functionality as below, https://demo.bokehplots.com/
I think that the slider with play button could make my project more easily to use, from slider side is work fine,
but when implement the play button function, I meet some trouble with call back function. I try some test,
found that there has no call-back trigger when I click the button, any wrong with my code as below?
Thank you very much.