[python-win32] list of child processes from pywin32

2006-02-28 Thread Farzin Shakib
Is there a way to get a list of all children of a process via pywin32? These would be all processes launched from calls like popen(), system() and QProcess(). Alternatively, is there a way to get the total CPU time (user and kernel) of all children of a python session? Note that os.times() does

[python-win32] Windows "Browse to" message

2006-02-28 Thread vince
When you open an html file or click on a link outside of a browser, it opens it in your default browser. What I'd like to do is to catpure this message and grab the URL text string to see where the browser is going. I was looking at PyHook, but I don't think it intercepts all windows messages, and

[python-win32] Re: list of child processes from pywin32

2006-02-28 Thread Roger Upole
> Is there a way to get a list of all children of a process via pywin32? > > These would be all processes launched from calls like popen(), system() > and QProcess(). > > Alternatively, is there a way to get the total CPU time (user and > kernel) of all children of a python session? > Note that

[python-win32] Re: Windows "Browse to" message

2006-02-28 Thread Roger Upole
[EMAIL PROTECTED] wrote: > When you open an html file or click on a link outside of a browser, it opens > it > in your default browser. What I'd like to do is to catpure this message and > grab the URL text string to see where the browser is going. > > I was looking at PyHook, but I don't think i

[python-win32] IE toolbar button in Python

2006-02-28 Thread Amit Upadhyay
Hi,I am trying to add a button to the toolbar in IE, and have been following http://msdn.microsoft.com/workshop/browser/ext/tutorials/button.asp , I am new to python, can anyone tell me how would I go about creating the COM object that implements IOleCommandTarget ? A newbie with this kind of progr