I'm looking for a very simple way to implement fibers in Python. I'm sure there's a really simple way to do it using generators, but my mind is crapping out on me. This isn't for a huge application, so I don't need the fanciness (or the overhead) of something like Diesel or Tornado or Twisted, I just want a neat little way to do fibers. Any ideas/suggestions?

Thanks folks

link|improve this question

code.activestate.com/recipes/… – Emil Oct 27 '10 at 7:38
feedback

2 Answers

Google around for Python coroutines. There's a lot of stuff out there with varying levels of complexity.

link|improve this answer
feedback
up vote 0 down vote accepted

I've discovered that Greenlets do pretty much exactly what I've been looking to do. Sweet!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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