vote up 4 vote down star
2

Is it possible to append elements to a python generator?

I'm currently trying to get all images from a set of disorganized folders and write them to a new directory. To get the files, I'm using os.walk() which returns a list of image files in a single directory. While I can make a generator out of this single list, I don't know how to combine all these lists into one single generator. Any help would be much appreciated.

Related:

flag

6 Answers

vote up 10 vote down check

This should do it, where directories is your list of directories:

import os
import itertools

generators = [os.walk(d) for d in directories]
for root, dirs, files in itertools.chain(*generators):
    print root, dirs, files
link|flag
chain.from_iterable(imap(os.walk, directories)) – J.F. Sebastian Feb 21 at 2:27
vote up 6 vote down

You are looking for itertools.chain. It will combine multiple iterables into a single one, like this:

>>> for i in itertools.chain([1,2,3], [4,5,6]):
...  print i
... 
1
2
3
4
5
6
link|flag
How do you use chain in the context of os.walk? – J.F. Sebastian Feb 21 at 1:34
vote up 3 vote down
def files_gen(topdir='.'):
    for root, dirs, files in os.walk(topdir):
        # ... do some stuff with files
        for f in files:
            yield os.path.join(root, f)
        # ... do other stuff

for f in files_gen():
    print f
link|flag
vote up 1 vote down

Just yeld each of generated element individually, not as list.

UPDATE: I've just discovered itertools.chain() that should be effective and elegant solution.

link|flag
vote up 0 vote down

Like this.

def threeGens( i, j, k ):
    for x in range(i):
       yield x
    for x in range(j):
       yield x
    for x in range(k):
       yield x

Works well.

link|flag
itertools.chain(range(i), range(j), range(k)) – J.F. Sebastian Feb 21 at 1:30
@J.F. Sebastian: Not when the range is os.walk(...). – S.Lott Feb 21 at 1:35
vote up 0 vote down

hey, thanks, this is was I was looking for too:

I had this code snippet...

grids = []
for item in input_files:
  grids.extend([... some list comprehension ...])

and wanted to rewrite it using generators... my first guess (and hope) was this:

grids = generator()
for item in input_files:
  grids.extend((... some list comprehension ...))

but there's no such constructor nor method. using itertools I have this:

grids = itertools.chain()
for item in input_files:
  grids = itertools.chain(grids, (... some list comprehension ...))

which seems good enough to me.
thanks to stackoverflow and their users!

link|flag

Your Answer

Get an OpenID
or

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