Here is a sample of the first row:
link,Title,Description,Keywords
It is made from an excel workbook, I tried saving in all CSV formats (window, ms-dos, and comma delimited list) I even tried saving in 2 txt file formats (window, ms-dos)
k... here is the code:
csvReader = csv.reader(file('files/my_file.csv', "rU"), delimiter=',')
I must have the U otherwise I get the universal new line error
k... here is the error:
16:56:25,085 ERROR [__main__] Script Error: syntax error at or near "."
LINE 1: ...escription, meta_keywords) VALUES ('link', 'Title'. 'Descrip...
^
16:56:25,085 ERROR [__main__] Script Error: syntax error at or near "."
LINE 1: ...escription, meta_keywords) VALUES ('link', 'Title'. 'Descrip...
grumbles Do you see...for some reason, when it goes through the csv.reader function, first comma is OK, second comma becomes a period!
Anyone ever run into this?