PyLinda is a simple implementation of a linda system, however it also includes several of the more recently proposed extensions to Linda in the form of multiple tuple spaces, garbage collection, sane non-blocking primitives and bulk tuple operations.
For installation instructions see the "How To Install" page.
linda_server.py
and then executing
linda_server.py -c<ip address or dns name>
on each of the other nodes where the ip address or dns name is for a node where the server has already been started. For a more detailed view on how to run the server see "Running The Server" .
On any of the computers that have a server started you can then start Python.
>>> import linda >>> linda.connect() >>> linda.universe._out((1, 2, 3)) >>> linda.universe._in((1, 2, int)) (1, 2, 3)
For more detailed examples look at the examples section.