I am looking for a easy to learn Actor library or framework for Python 2.x I have tried Candygram and Twisted but I did not like none of them. I'd like something will be easy to extend to suppero Greenlet (= stackless python).

Candygram is too old. Twisted is too complicated.

Gevent: it is unclear if it can support Actors model.

What do you will suggest? Thank you!

link|improve this question
2  
I don't know anything about Candygram, but I thought Twisted was more oriented around networking than around Actor-based concurrency. – Daniel Yankowsky Aug 6 '10 at 12:43
Community wiki? You state some opinions that are likely going to upset someone. – Christian Aug 6 '10 at 18:00
The best Erlang like actors are implemented in Erlang. Do concurrent oriented work in Erlang and left rest of work to python through ports. I would do whole work in Erlang but if someone think that Python is better for any task it is his taste. – Hynek -Pichi- Vychodil Aug 6 '10 at 20:02
All right, I ahev put the question as community wiki. I know a bit of Erlang it rocks, but I'd prefer to use Python. I need not to to the same thing I do in Erlang in Python, and also not in the same way – daitangio Aug 7 '10 at 14:41
feedback

3 Answers

up vote 6 down vote accepted

To make actors with gevent, use a Greenlet subclass with embedded gevent.queue.Queue instance used as an inbox. To read a message from the inbox, simply get() from the queue. To send a message to an actor, put it into that actor's queue.

Read about subclassing Greenlet here.

If you need help with writing the Actor class, feel free to ask the mailing list.

link|improve this answer
Thank you very much! I will dive into gevent, and try it extensively – daitangio Aug 9 '10 at 12:53
feedback

This tutorial has a simple and working example for actors with gevent. Basically it's exactly as Denis already described.

link|improve this answer
feedback

I would take a look at this: https://bitbucket.org/fzzzy/python-actors

It's pretty much a straight clone of the Erlang actor model, with "saved" messages queue, links and everything.

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.