I'm looking for a way to output from a python program to a spreadsheet.
The data I want to output is the reading from a tachometer, which is a data stream which updates every 1s. So every 1 second I want the RPM value to be written to the next row of the same column in a spreadsheet. So ideally I want to specify column 1 and keep adding data in a list to that column as the program creates a value for RPM from the GPIO pin I'm using.
Does that make sense?
I can find plenty of examples of outputting to ODS when the entire dataset is known, so just copying data stored within the script essentially to an ODS file. I don't know what values or how many there will be I just need them to be logged in a spreadsheet.