how do I check if loader is running code example
Example 1: python check if exe is running
import subprocess
s = subprocess.check_output('tasklist', shell=True)
if "cmd.exe" in s:
print s
Example 2: how to check if sidekiq is running
cap production sidekiq:start