Answers for "how to check if an application is open in python"

4

how to check if an application is open in python

#Iterates through all the programs running in your system and checks for the one in the string
import psutil    
"someProgram" in (p.name() for p in psutil.process_iter())
Posted by: Guest on June-14-2020

Code answers related to "how to check if an application is open in python"

Python Answers by Framework

Browse Popular Code Answers by Language