suppress the output of subprocess and check_call
February 27th, 2008 by Lawrence David
to not have the output of subprocess.check_call print out in python, pass the output to /dev/null like so:
subprocess.check_call(angst_call,stdout=open(os.devnull,”w”))