Re: Communication between python scripts

2005-03-04 Thread Stephen Toledo-Brown
Heiko Wundram wrote: Am Dienstag, 1. März 2005 21:54 schrieb Chris: Is there a preferred method for having different scripts on different computers communicate with each other? snip You have several options at your disposal. 6) do something else which doesn't come to my mind just now. ;) The main

Re: Communication between python scripts

2005-03-04 Thread [EMAIL PROTECTED]
Another reason NOT to use XML-RPC: PSF-2005-001 - SimpleXMLRPCServer.py allows unrestricted traversal http://python.org/security/PSF-2005-001/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Communication between python scripts

2005-03-01 Thread Chris Grebeldinger
There are many ways, for instance you could use SimpleXMLRPCServer and have one app expose a done_process() function, and use that to synchronize. -- http://mail.python.org/mailman/listinfo/python-list

Re: Communication between python scripts

2005-03-01 Thread Peter Hansen
Chris wrote: Is there a preferred method for having different scripts on different computers communicate with each other? For example, script A could tell script B that it is done with a certain process. I know how to do this using e-mail, but I would like a more direct method if possible. If

Re: Communication between python scripts

2005-03-01 Thread Andr Sreng
Chris wrote: Is there a preferred method for having different scripts on different computers communicate with each other? For example, script A could tell script B that it is done with a certain process. I know how to do this using e-mail, but I would like a more direct method if possible. If

Re: Communication between python scripts

2005-03-01 Thread Heiko Wundram
Am Dienstag, 1. März 2005 21:54 schrieb Chris: Is there a preferred method for having different scripts on different computers communicate with each other? You have several options at your disposal. 1) Use mail-communication (like you said, a combination of smtplib and poplib/imaplib), 2)

Re: Communication between python scripts

2005-03-01 Thread Do Re Mi chel La Si Do
Hi ! A socket (TCP) server is very easy, and 30 x faster than XML-RPC. @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list

Re: Communication between python scripts

2005-03-01 Thread Do Re Mi chel La Si Do
Hi ! A socket (TCP) server is more simplist than XML-RPC, and 30 x faster. @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list

Re: Communication between python scripts

2005-03-01 Thread Peter Hansen
Do Re Mi chel La Si Do wrote: A socket (TCP) server is more simplist than XML-RPC, and 30 x faster. Is it more simplist in terms of reliability? Generally most people writing low-level socket code, even in Python, do an absymal job of it. Far better to avoid reinventing the wheel and use