Re: Starting New Process

2006-06-05 Thread david brochu jr
try os.spawn() using the os module -- http://mail.python.org/mailman/listinfo/python-list

Re: Starting New Process

2006-06-05 Thread D
Sorry to bring it back up, but is there a way to spawn the process without Twisted? -- http://mail.python.org/mailman/listinfo/python-list

Re: Starting New Process

2006-06-01 Thread D
Sorry, I should've specified - I'm familiar with sockets, but I was referring to spawning a 'vi' process independent of my Python app.. Carl wrote: > D wrote: > > > Thanks, Jean-Paul - is there any way to do it without using Twisted, > > since I am not very familiar with it? (i.e. just using the

Re: Starting New Process

2006-06-01 Thread Carl
D wrote: > Thanks, Jean-Paul - is there any way to do it without using Twisted, > since I am not very familiar with it? (i.e. just using the os library) > Thanks. > > Jean-Paul Calderone wrote: >> On 1 Jun 2006 07:34:23 -0700, D <[EMAIL PROTECTED]> wrote: >> >Hello, I need to write a server progr

Re: Starting New Process

2006-06-01 Thread D
Thanks, Jean-Paul - is there any way to do it without using Twisted, since I am not very familiar with it? (i.e. just using the os library) Thanks. Jean-Paul Calderone wrote: > On 1 Jun 2006 07:34:23 -0700, D <[EMAIL PROTECTED]> wrote: > >Hello, I need to write a server program that performs the f

Re: Starting New Process

2006-06-01 Thread Jean-Paul Calderone
On 1 Jun 2006 07:34:23 -0700, D <[EMAIL PROTECTED]> wrote: >Hello, I need to write a server program that performs the following >tasks: > >1) Listens on TCP port for a connection >2) When client connects, launches application (for example, vi), then >closes connection with client >3) Goes b

Starting New Process

2006-06-01 Thread D
Hello, I need to write a server program that performs the following tasks: 1) Listens on TCP port for a connection 2) When client connects, launches application (for example, vi), then closes connection with client 3) Goes back to listening on TCP port for an incoming connection The