Re: Getting the output from a console command while it's been generated!

2007-01-29 Thread Gabriel Genellina
En Sun, 28 Jan 2007 23:54:03 -0300, Raúl Gómez C. <[EMAIL PROTECTED]> escribió: > I can't use the subprocess module because my app needs to be compatible > with > Python 2.3 so, is there another approach to this problem??? Any variant of popen; see the popen2 module (but read the last notes o

Re: Getting the output from a console command while it's been generated!

2007-01-28 Thread Raúl Gómez C.
I can't use the subprocess module because my app needs to be compatible with Python 2.3 so, is there another approach to this problem??? Thanks! On 1/26/07, Gabriel Genellina <[EMAIL PROTECTED]> wrote: "Raúl Gómez C." <[EMAIL PROTECTED]> escribió en el mensaje news:[EMAIL PROTECTED] > I'm try

Re: Getting the output from a console command while it's been generated!

2007-01-26 Thread Gabriel Genellina
"Raúl Gómez C." <[EMAIL PROTECTED]> escribió en el mensaje news:[EMAIL PROTECTED] > I'm trying to make my apps more informative to the user, so I want to know > if its possible to get the output of the execution of a console command > while it's been generated, I mean, I want to get the output fr

Getting the output from a console command while it's been generated!

2007-01-26 Thread Raúl Gómez C.
Hi everyone, I'm trying to make my apps more informative to the user, so I want to know if its possible to get the output of the execution of a console command while it's been generated, I mean, I want to get the output from commands.getstatusoutput('CMD') while CMD it's been executed and not wai