Search code examples
pythonsubprocesspopen

How to use subprocess popen Python


Since os.popen is being replaced by subprocess.popen, I was wondering how would I convert

os.popen('swfdump /tmp/filename.swf/ -d')

to subprocess.popen()

I tried:

subprocess.Popen("swfdump /tmp/filename.swf -d")
subprocess.Popen("swfdump %s -d" % (filename))  # NOTE: filename is a variable
                                                # containing /tmp/filename.swf

But I guess I'm not properly writing this out. Any help would be appreciated. Thanks


Solution

  • subprocess.Popen takes a list of arguments:

    from subprocess import Popen, PIPE
    
    process = Popen(['swfdump', '/tmp/filename.swf', '-d'], stdout=PIPE, stderr=PIPE)
    stdout, stderr = process.communicate()
    

    There's even a section of the documentation devoted to helping users migrate from os.popen to subprocess.