Re: Comunicate processes with python

2008-03-18 Thread Gabriel Genellina
En Tue, 18 Mar 2008 14:40:29 -0300, Adrián Bravo Navarro <[EMAIL PROTECTED]> escribió: > That was what we were thinking of, so if there is not some kind of easy > python magic we will probably use some sockets. You have pipes too, and a memory mapped file guarded by a semaphore. -- Gabriel Ge

Re: Comunicate processes with python

2008-03-18 Thread Adrián Bravo Navarro
That was what we were thinking of, so if there is not some kind of easy python magic we will probably use some sockets. Thanks!! 2008/3/18, Joshua Kugler <[EMAIL PROTECTED]>: > > Adrián Bravo Navarro wrote: > >> Is there any simple way to achieve this goal? We've been thinking of > >> sockets but

Re: Comunicate processes with python

2008-03-18 Thread Joshua Kugler
Adrián Bravo Navarro wrote: >> Is there any simple way to achieve this goal? We've been thinking of >> sockets but Im not conviced at all with that. If you want to communicate between processes on the same host, yes, you can use DBus or a couple of the options here: http://docs.python.org/lib/ipc.

Re: Comunicate processes with python

2008-03-18 Thread Adrián Bravo Navarro
Hi, Does the absence of answers mean that the unique way to let the console invoke daemon functions is trough dbus or sockets? I wonder if python provides any other mechanism to get this. Thanks Adrian 2008/3/17, Adrián Bravo Navarro <[EMAIL PROTECTED]>: > > Hi, > > let me introduce ourselves fi

Comunicate processes with python

2008-03-17 Thread Adrián Bravo Navarro
Hi, let me introduce ourselves first. We are a smallish group of students working on a open source snapshot/backup system (www.hdlorean.com or http://launchpad.net/hdlorean). We are using python for almost all of the code and for all of us this is the first python project we develop. At this point