blob: 2ecb073f3bed2cccb02aeb9b811ef59b3d2cb1fc (
plain)
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
45
46
47
48
49
50
51
|
"""
Generic functions that should be reusable anywhere in pokemontools.
"""
import os
def index(seq, f):
"""
return the index of the first item in seq
where f(item) == True.
"""
return next((i for i in xrange(len(seq)) if f(seq[i])), None)
def grouper(some_list, count=2):
"""
splits a list into sublists
given: [1, 2, 3, 4]
returns: [[1, 2], [3, 4]]
"""
return [some_list[i:i+count] for i in range(0, len(some_list), count)]
def flattener(x):
"""
flattens a list of sublists into just one list (generator)
"""
try:
it = iter(x)
except TypeError:
yield x
else:
for i in it:
for j in flattener(i):
yield j
def flatten(x):
"""
flattens a list of sublists into just one list
"""
return list(flattener(x))
def mkdir_p(path):
"""
Make a directory at a given path.
"""
try:
os.makedirs(path)
except OSError as exc: # Python >2.5
if exc.errno == errno.EEXIST:
pass
else:
raise exc
|