I'm looking for an implementation of CSP channels on top of native threads in Python. I've seen a few libraries about but they include everything but the kitchen sink.

Specifically, I'm looking for the ability to wait for the first of a set of send and receive operations on multiple channels and either have the results of the first completed operation returned to me, or a callback invoked.

Here are a few related links for context:

link|improve this question

78% accept rate
What do you mean by "native threads in Python"? Python uses GIL, and unless I'm mistaken, doesn't support native multi-threading: wiki.python.org/moin/GlobalInterpreterLock – NoBugs Dec 27 '11 at 22:40
@NoBugs: You are mistaken. – Matt Joiner Dec 28 '11 at 6:29
feedback

1 Answer

up vote 0 down vote accepted

Yes, my library python-csp has all of these. You can get the library here: http://code.google.com/p/python-csp/

Here's a simple example with channels and ALTing (also called non-deterministic selection):

>>> @process
... def send_msg(chan, msg):
...     chan.write(msg)
... 
>>> @process
... def alt_example(chan1, chan2):
...     alt = Alt(chan1, chan2)
...     print alt.select()
...     print alt.select()
... 
>>> c1, c2 = Channel(), Channel()
>>> Par(send_msg(c1, 'yes'), send_msg(c2, 'no'), alt_example(c1, c2)).start()
yes
no
>>>

I'm in the middle of refactoring the internals and cleaning things up, so keep an eye out for a release pretty soon or feel free to email me offline about it if you wish.

link|improve this answer
Nice, looks nicer than pycsp. – Matt Joiner Jan 8 at 0:47
1  
thanks :) Hoping for a "proper" release on PyPI in the next few weeks after this bit of refactoring. – snim2 Jan 8 at 1:27
feedback

Your Answer

 
or
required, but never shown

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