Python subprocesos redirige un archivo

print subprocess.Popen("echo Hello World", shell=True, stdout=subprocess.PIPE).stdout.read()
Filthy Fly