Re: [python-win32] reading from console child process

2005-04-05 Thread Niki Spahiev
Chris Maloof wrote: Thanks for the help! ctypes ended up working for me, with help from win32process where possible. I'm not sure why the solutions involving popen variants failed; I might have missed something easier. Here's the meat of my solution for the archives anyway, though. IIRC

Re: [python-win32] reading from console child process

2005-04-05 Thread Chris Maloof
Niki Spahiev wrote: Chris Maloof wrote: Hello, I'm trying to read the output from a WinXP console application using PythonWin -- that is, I start the application as a child process, and I want to be able to read the ASCII text in the application's screen. The child app uses MSDN functions

Re: [python-win32] reading from console child process

2005-03-30 Thread Ray S
At 11:49 PM 3/29/2005 -0500, Chris Maloof wrote: Hello, I'm trying to read the output from a WinXP console application using PythonWin -- that is, I start the application as a child process, and I want to be able to read the ASCII text in the application's screen. I wrote some pipes code to do