-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrandomReader.py
44 lines (39 loc) · 1.03 KB
/
randomReader.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
"""
@summary: Read a csv file, build a dictionary of lines content and randomize it
@author: Alexandre Bisiaux
"""
from unicodeMagic import UnicodeReader
import random
"""
@summary: Read a csv file, construct a dictionary of lines content and randomize it
"""
class RandomReader:
"""
Construct a dictionary of contents and randomize its key set
"""
def __init__(self, f):
reader = UnicodeReader(f)
self.content = {}
i = 0
for row in reader:
line = []
for r in row:
line.append(r)
self.content[i] = line
i += 1
self.randomKeys = self.content.keys()
random.shuffle(self.randomKeys)
"""
Iterate over random lines
@return: self
"""
def __iter__(self):
self.iterator = self.randomKeys.__iter__()
return self
"""
Get the next line according to the randomize key
@return: A random line
"""
def next(self):
k = self.iterator.next()
return self.content[k]