I need to write a script in Python that will take dynamically changed data, the source of data is not matter here, and display graph on the screen.
I know how to use matplotlib, but the problem with matplotlib is that I can display graph only once, at the end of the script. I need to be able not only to display graph one time, but also update it on the fly, each time when data changes.
I found that it is possible to use wxPython with matplotlib to do this, but it is little bit complicate to do this for me, because I am not familiar with wxPython at all.
So I will be very happy if someone will show me simple example how to use wxPython with matplotlib to show and update simple graph. Or, if it is some other way to do this, it will be good to me too.
Update
PS: since no one answered and looked at matplotlib help noticed by @janislaw and wrote some code. This is some dummy example:
import time
import matplotlib.pyplot as pltdef data_gen():a=data_gen.aif a>10:data_gen.a=1data_gen.a=data_gen.a+1return range (a,a+10)def run(*args):background = fig.canvas.copy_from_bbox(ax.bbox)while 1:time.sleep(0.1)# restore the clean slate backgroundfig.canvas.restore_region(background)# update the dataydata = data_gen()xdata=range(len(ydata))line.set_data(xdata, ydata)# just draw the animated artistax.draw_artist(line)# just redraw the axes rectanglefig.canvas.blit(ax.bbox)data_gen.a=1
fig = plt.figure()
ax = fig.add_subplot(111)
line, = ax.plot([], [], animated=True)
ax.set_ylim(0, 20)
ax.set_xlim(0, 10)
ax.grid()manager = plt.get_current_fig_manager()
manager.window.after(100, run)plt.show()
This implementation have problems, like script stops if you trying to move the window. But basically it can be used.