I\'m trying to check the value of extracted data against a csv I already have. It will only loop through the rows of the CSV once, I can only check one value of feed.items()
Making orig a list avoids the need to reset/reparse the csv:
orig
orig = list(csv.reader(open("googlel.csv", "rb"), delimiter = ';'))