RE: Email Program

2009-02-28 Thread Thomas Raef
What a great response. -Original Message- From: python-list-bounces+traef=ebasedsecurity@python.org [mailto:python-list-bounces+traef=ebasedsecurity@python.org] On Behalf Of MRAB Sent: Saturday, February 28, 2009 8:00 PM To: python-list@python.org Subject: Re: Email Program

RE: Email Program

2009-03-01 Thread Thomas Raef
Subject: Re: Email Program Thomas Raef wrote: What a great response. It's a correct, straight forward and short answer to the op's question. Christian -- http://mail.python.org/mailman/listinfo/python-list -- http://mail.python.org/mailman/listinfo/python-list

Threads, forks, multiplexing - oh my

2008-12-21 Thread Thomas Raef
I have a program that was created by someone else and it does it's job beautifully. I now want to run multiple instances of this program on a client, after receiving the command line and args from a broker, dispatcher, whatever you want to call it. This dispatcher will listen for a

RE: Distributing simple tasks

2009-02-06 Thread Thomas Raef
Hi, Suppose I have an array of functions which I execute in threads (each thread get a slice of the array, iterates over it and executes each function in it's slice one after the other). Now I want to distribute these tasks between two machines, i.e give each machine half of the slices and let