Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Reseting generator object in Python

I often have the following problem in python: I have a generator which I am using in several calls to compute different values, like this:

mygenerator = generate_data()
value1 = compute1(mygenerator)
value2 = compute2(mygenerator)

The problem is, of course, that compute2 will find no data, since the generator has been consumed. So I am forced to "listize" the generator:

mygenerator = generate_data()
mylist = listize_generator(mygenerator)
value1 = compute1(mylist)
value2 = compute2(mylist)

Is there another method to solve this problem?

share|improve this question
3  
what does listize_generator do? Can you just invoke: mylist = list(mygenerator)? – Paolo Moretti Oct 17 '12 at 11:12
Indeed, that's is what it does. Is there any other solution to this problem? Having a list of the generated data can be memory intensive. – gonvaled Oct 17 '12 at 11:22

marked as duplicate by halex, phant0m, interjay, Janne Karila, Lev Levitsky Oct 17 '12 at 11:19

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

You need co-routines to send the generator output to multiple consumers.

e.g. http://www.dabeaz.com/coroutines/cobroadcast.py

I recommend reading all of http://www.dabeaz.com/coroutines/ since it's an excellent introduction.

share|improve this answer
You might also want to look at tee(), from itertools: docs.python.org/library/itertools.html#itertools.tee – nvie Oct 17 '12 at 21:03

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