I am working on an art project that will involve ongoing plots of data that comes in gradually. From the plotter’s perspective, think of it like a multi-line graph where the various curving lines get extended over the course of days.
I think what I’m looking for is something between the two existing APIs: https://axidraw.com/doc/py_api/
That has a whole-file-at-once mode for SVG, and an interactive mode for (x,y) points. For my needs, curves are important, so the latter doesn’t sound like what I need. But I want to extend various curves a few times a minute, so the whole-file-at-once mode isn’t quite it either.
Is there some other API I should be looking at? Since I’m a developer, can I dig into the code to do something in between? Or should I just look at it as sending a variety of very tiny SVG files that happen to end up rendered on the same sheet of paper?
(I should say that I already have this rendering into SVG for the web, but am happy to write code to output in whatever way needed to get the plots working.)
Thanks!