I am working on a large hardware testing project, and one of the things I've run into is that I'd like to plot data coming out of the Python scripts on the systems doing the testing, but they aren't stout enough to run something like matplotlib. I started to do was to define a format to pass data back to the server that logs all the data coming from test systems; however, I would prefer to use something off the shelf if it exists for writing plots in a standardized way to an ASCII file and reading them back some where else and plotting.
I am partial to plotting in matplotlib, but I have some flexibility as to what I can use. I don't have any problem defining a custom format, I would just like to use something standard if matplotlib, (or any other full featured tool) has a way to build plots on the fly from some text format. Thanks in advance for your help.
Edit: To be more specific, transferring data is pretty straighforward; I like using JSON for that. What I am kind of looking for, is to build a file that not only holds data but also how to plot the data, (i.e. the script/application loads it up and builds a plot from it, the file specifies title/xlabel/ylabel, maybe that it needs a legend, etc.) Writing data via CSV or JSON isn't hard; it's finding a way to send plotting instructions to a host in a standardized way that might be.