Is there a variant of subprocess.call
that can run the command without printing to standard out, or a way to block out it's standard out messages?
Yes. Redirect its stdout
to /dev/null
.
process = subprocess.call(["my", "command"], stdout=open(os.devnull, 'wb'))