8 lines
180 B
Python
8 lines
180 B
Python
import psutil
|
|
|
|
def is_running():
|
|
for p in psutil.process_iter():
|
|
if p.name() == 'python3' and 'play-daemon.py' in p.cmdline():
|
|
return True
|
|
return False
|