import linda
linda.connect()
ts = linda.TupleSpace()
Your master process will usually want to output the tuplespace reference to the universal tuplespace where the slave processes can read it.
The master process...
linda.universe._out(("My identifying string", ts))
The slave process...
ts = linda.universe._rd(("My identifying string", linda.TupleSpace))[1]