When using a windows machine, what would be the easiest way to check if a process in running, using python. (Using Python, what's the best way to get a True/False answer for whether a process like "Notepad.exe" is running.)
Assuming that I cannot use WMI for reasons unknown, I would guess that the best/most upvoted answer would be something with psutil.
Thanks!