Get list of names of running processes in python

4.1k Views Asked by At

I need to get list of names of running processes in python. I m doing this by psutil.process_iter in a for loop. But i need faster way to check if process is running. Also if it would be possible, rather then a list I would appreciate a tuple. Thanks for any response.

1

There are 1 best solutions below

2
On

you can use WMI, there is an example in Python using the wmi module:

http://timgolden.me.uk/python/wmi/cookbook.html

import wmi
c = wmi.WMI ()

for process in c.Win32_Process ():
    print process.ProcessId, process.Name