Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to sort a big text file (about 12 Giga), by counting the occurrences of each line. For that I have used :

sort file.txt | uniq -c > sorted  

But it is taking forever because of geometrical expansion. Any idea?

share|improve this question
1  
Maybe it takes "forever" because you don't have enough RAM? Splitting the file into chunks could help. – Lev Levitsky Nov 21 '12 at 11:09

1 Answer

up vote 0 down vote accepted
from collections import defaultdict

d = defaultdict(int)

with open(file.txt) as f:
    for line in f:
        d[line]+=1

d now contains a dictionary, where each key is a unique line, and the value is the count of that line.

share|improve this answer
You could use collections.Counter for even more simple operation: with open("file.txt") as f: d = collections.Counter(f) – Blckknght Nov 21 '12 at 11:39
@Blckknght im still stuck in the python 2.6 world.... :) – Inbar Rose Nov 21 '12 at 11:40
titan - out of curiosity, how long does it take to run my code on your 12GB file? – Inbar Rose Nov 21 '12 at 12:26
Thank you, it worked ! – titan Nov 21 '12 at 12:54
1  
it took me : The time is 480.929841995seconds – titan Nov 21 '12 at 22:31
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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