The following questions regard how to write subprocess.call to output files.
Is there away to redirect standard output of subprocess.call() to a string object in python, instead of having to create a file? For example, I would like to call the md5sum command, and simply save the results as a string. Is there a way to forgo the file making step?