vote up 1 vote down star

I have a generator and I would like to know if I can use it without having to worry about StopIteration , and I would like to use it without the for item in generator . I would like to use it with a while statement for example ( or other constructs ). How could I do that ?

flag

3 Answers

vote up 0 vote down check

Use this to wrap your generator:

class GeneratorWrap(object):

      def __init__(self, generator):
          self.generator = generator

      def __iter__(self):
          return self

      def next(self):
          for o in self.generator:
              return o
          raise StopIteration # If you don't care about the iterator protocol, remove this line and the __iter__ method.

Use it like this:

def example_generator():
    for i in [1,2,3,4,5]:
        yield i

gen = GeneratorWrap(example_generator())
print gen.next()  # prints 1
print gen.next()  # prints 2

Update: Please use the answer below because it is much better than this one.

link|flag
what happens when I call it the sixth time ? – Geo Feb 1 at 11:16
@Tsunami, it returns None. – Evan Fosmark Feb 1 at 11:17
@Tsunami, I should also mention that this behavior can be changed by adding another return statement below the for loop in the next() method. Whatever you have it return will be the default after the generator has exhausted. – Evan Fosmark Feb 1 at 11:19
By the way,can you please explain what's the logic behind returning self in iter ? – Geo Feb 1 at 11:24
An iterator next() method must raise StopIteration. Your __iter__() method returns self but the object breaks the contract for iterator object. – J.F. Sebastian Feb 1 at 11:25
show 5 more comments
vote up 11 vote down

built-in function

next(iterator[, default])
Retrieve the next item from the iterator by calling its __next__() method. If default is given, it is returned if the iterator is exhausted, otherwise StopIteration is raised.

In Python 2.5 and older:

raiseStopIteration = object()
def next(iterator, default=raiseStopIteration):
    if not hasattr(iterator, 'next'):
       raise TypeError("not an iterator")
    try:
       return iterator.next()
    except StopIteration:
        if default is raiseStopIteration:
           raise
        else:
           return default
link|flag
I've added next() implementation for Python 2.5 – J.F. Sebastian Feb 1 at 12:01
1  
This is a better solution than the accepted one. – Carl Meyer Feb 1 at 19:20
vote up 1 vote down

Another options is to read all generator values at once:

>>> alist = list(agenerator)

Example:

>>> def f():
...   yield 'a'
...
>>> a = list(f())
>>> a[0]
'a'
>>> len(a)
1
link|flag
this defeats the point!!! – hasen j Feb 1 at 12:20
@hasen: list[index] doesn't raise StopIteration. It can be used without for loop. It can be used with a while loop. All conditions from the question are satisfied. – J.F. Sebastian Feb 1 at 12:26
Though @SilentGhost's approach is better in my opinion. – J.F. Sebastian Feb 1 at 12:28
Try reading all generator values of itertools.count() :) – Torsten Marek Feb 1 at 18:02
As soon as @Torsten Marek get StopIteration from itertools.count() I'll read all values. :) OP asks only about generators that can produce StopIteration, so infinite generators just do not apply. – J.F. Sebastian Feb 1 at 23:18

Your Answer

Get an OpenID
or

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