I'm trying to read the contents of a TSV file as part of a Google App Engine application.
I can read from a file fine by using:
f=csv.reader(open(matrixpath, "rU"),dialect='excel-tab')
However I now need to read the data from the blobstore using blobreader:
blob_key = ...
blobdata = blobstore.BlobReader(blob_key)
f=csv.reader(blobdata,dialect='excel-tab')
(I've uploaded a copy of the entire code that I'm having this issue with here)
Without the rU argument I get a new-line in unquoted field error:
Error: new-line character seen in unquoted field - do you need to open the file in universal-newline mode?
I would like to either fix my file so that I do not get this error, or emulate opening from the blobstore in a universal-newline mode?
My file is around 20MB, and a cut down sample of it (that the script still fails on) can be found here.
f=csv.reader(StringIO.StringIO(blobdata),dialect=csv.excel_tab)? – systempuntoout Mar 30 '11 at 20:12.splitlines(), becausecsv.readeralso accepts a list of strings. – Calvin Mar 30 '11 at 21:47f = csv.reader(blobdata.read().splitlines(),dialect=csv.excel_tab)worked! Thank you very much for your input, and also thank you @John for all your assistance too. – Phil Mar 30 '11 at 22:08