I need to read a CSV with a couple million rows. The file grows throughout the day. After each time I process the file (and zip each row into a dict), I start the process over again, except creating the dict only for the new lines.
In order to get to the new lines though, I have to iterate over each line with CSV reader and compare the line number to my 'last line read' number (as far as I know).
Is there a way to just 'skip' to that line number?