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.

link|improve this question
have you tried with f=csv.reader(StringIO.StringIO(blobdata),dialect=csv.excel_tab) ? – systempuntoout Mar 30 '11 at 20:12
@Phil: If you are having a universal-newlines-related problem, posting a chunk of your file on the web doesn't help much -- does that chunk actually reproduce the problem? Please determine which line is causing the problem (count lines as you read it, trap the error, print #lines read) then show us repr(bad line plus two lines before and two lines after). – John Machin Mar 30 '11 at 20:22
@systempuntoout - ah interesting... I thought the solution would involve StringIO and had experimented a little bit. I tried your suggestion and am now getting an IndexError: list index out of range error that I don't get when I open the data as a file. Still, I guess the data is being read or I wouldn't be getting that error! If you submit this as an answer I'd be happy to mark it as one? – Phil Mar 30 '11 at 20:24
1  
Did you see this similar question?: stackoverflow.com/questions/5341174/… I think they ended up using .splitlines(), because csv.reader also accepts a list of strings. – Calvin Mar 30 '11 at 21:47
1  
@Calvin f = 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
show 12 more comments
feedback

2 Answers

I cannot reproduce the error directly from the sample file. Can you?

Given blob = open('sample-file.tsv', 'rb').read():

  1. reader = csv.reader(blob, dialect='excel-tab') produces a zillion or so one-byte fields, as expected.

  2. Substituting StringIO.StringIO(blob) or blob.splitlines() produces 50 rows each with about 10000 columns ... appears to be working correctly.

Unless you show (1) your blob uploading code (and URL of relevant docs) (2) your code that is getting the error on GAE, further assistance doesn't appear to be possible.

link|improve this answer
feedback

From Upload and parse csv file with "universal newline" in python on Google App Engine , the following answer worked for me:

csv.reader(blob.open.read().splitlines())

to read a mac formatted csv file on GNU/Linux.

link|improve this answer
2  
This will read the whole blob into memory. – Nick Johnson Jan 10 at 0:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.