I have a beagleboard which I need to run a webpage displaying a live matplotlib animated graph. currently I have the graph part working when I run the python script and do plt.show(). this opens a new window on my PC with the graph. However, I need this graph to be displayed on a html page on my beagleboard.
I have looked online and there isn't much, mostly people producing a matplotlib graph, saving as an image and inserting that into their webpage. this isn't a solution as my graph is live and will be updated every few seconds.