get a list of open applications python

Solutions on MaxInterview for get a list of open applications python by the best coders in the world

showing results for - "get a list of open applications python"
Lisa
26 May 2016
1import win32gui
2
3def winEnumHandler( hwnd, ctx ):
4    if win32gui.IsWindowVisible( hwnd ):
5        print (hex(hwnd), win32gui.GetWindowText( hwnd ))
6
7win32gui.EnumWindows( winEnumHandler, None )