I am using csv.reader to read file but it giving me whole file.

file_data = self.request.get('file_in');
file_Reader = csv.reader( file_data );
for fields in file_Reader:

I want one line at a time and separate data from that line.

ex: filedata = name,sal,dept
               x,12000,it
o\p=
name
sal
dept
.
.
.
link|improve this question

44% accept rate
feedback

3 Answers

up vote 0 down vote accepted

It looks like you are trying to pass a string of data directly to csv.reader(). It's expecting an iterable object like a list or filehandle. The docs for the csv module mention this. So you probably want to split the string along newlines before passing it to csv.reader.

import csv
file_data = self.request.get('file_in')
file_data_list = file_data.split('\n')
file_Reader = csv.reader(file_data_list)
for fields in file_Reader:
    print row

Hope that helps.

link|improve this answer
yes, it works. thanks for help. – Rahul99 Mar 10 '10 at 5:39
feedback

This

>>> import csv
>>> spamReader = csv.reader(open('eggs.csv'), delimiter=' ', quotechar='|')
>>> for row in spamReader:
...     print ', '.join(row)
Spam, Spam, Spam, Spam, Spam, Baked Beans
Spam, Lovely Spam, Wonderful Spam

Was taken from the manual

Hope that helps...

link|improve this answer
clue =- Row is a list of strings there... – Martin Milan Mar 9 '10 at 13:38
+1 even if for nothing else but the Monty Python reference. – Chen Levy Mar 9 '10 at 13:42
it is giving me whole file in a single line – Rahul99 Mar 9 '10 at 13:46
@rahul: show us a few lines of the file!!! – John Machin Mar 9 '10 at 13:55
My point is that by the time the code reaches the print line, row should be a list of the items in a specific row of your csv. Is this not what you're seeing? – Martin Milan Mar 9 '10 at 17:09
feedback

Why not do it manually?

for line in fd:
        foo, bar, baz = line.split(";")
link|improve this answer
3  
That wouldn't handle things like quotes correctly though, would it - which would be needed if the data in the csv could, in itself, contain commas... – Martin Milan Mar 9 '10 at 17:10
+1 for the hint. This is a common speed-vs-comfort trade-off. – Philip Mar 9 '10 at 20:09
feedback

Your Answer

 
or
required, but never shown

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