vote up 16 vote down star
5

I want to be able to call external command in Python.

Thanks for your help!

flag

9 Answers

vote up 21 vote down check

Look at the subprocess module in the sdtlib:

from subprocess import call
call(["ls", "-l"])

The advantage of subprocess vs system is that it is more flexible (you can get the stdout, stderr, the "real" status code, better error handling, etc...). I think os.system is deprecated, too, or will be:

http://www.python.org/doc/2.5/lib/node534.html

For quick/dirty/one time scripts, os.system is enough, though.

link|flag
I couldn't figure out how to get the code formatting to work either... – sirwart Sep 18 '08 at 1:43
4  
Can't see why you'd use os.system even for quick/dirty/one-time. subprocess seems so much better. – nosklo May 26 at 16:40
vote up 23 vote down

Here's a summary of the ways to call external programs and the advantages and disadvantages of each:

  1. os.system("some_command with args") passes the command and arguments to your system's shell. This is nice because you can actually run multiple commands at once in this manner and set up pipes and input/output redirection. For example,
    os.system("some_command < input_file | another_command > output_file")
    However, while this is convenient, you have to manually handle the escaping of shell characters such as spaces, etc. On the other hand, this also lets you run commands which are simply shell commands and not actually external programs.
    http://docs.python.org/lib/os-process.html

  2. stream = os.popen("some_command with args") will do the same thing as os.system except that it gives you a file-like object that you can use to access standard input/output for that process. There are 3 other variants of popen that all handle the i/o slightly differently. If you pass everything as a string, then your command is passed to the shell; if you pass them as a list then you don't need to worry about escaping anything.
    http://docs.python.org/lib/os-newstreams.html

  3. The Popen class of the subprocess module. This is intended as a replacement for os.popen but has the downside of being slightly more complicated by virtue of being so comprehensive. For example, you'd say
    print Popen("echo Hello World", stdout=PIPE, shell=True).stdout.read()
    instead of
    print os.popen("echo Hello World").read()
    but it is nice to have all of the options there in one unified class instead of 4 different popen functions.
    http://docs.python.org/lib/node528.html

  4. The call function from the subprocess module. This is basically just like the Popen class and takes all of the same arguments, but it simply wait until the command completes and gives you the return code. For example:
    return_code = call("echo Hello World", shell=True)
    http://docs.python.org/lib/node529.html

  5. The os module also has all of the fork/exec/spawn functions that you'd have in a C program, but I don't recommend using them directly.

The subprocess module should probably be what you use.

link|flag
vote up 19 vote down

I'd recommend using the subprocess module instead of os.system because it does shell escaping for you and is therefore much safer: http://docs.python.org/lib/module-subprocess.html

subprocess.call(['ping', 'localhost'])

link|flag
And subprocess will allow you to easily attach to the input/output streams of the process, etc. – Joe Skora Sep 18 '08 at 2:14
subprocess doesn't do shell escaping for you because it avoids using the shell entirely. It actually means that startup is a little faster and there's less overhead. – Aaron Gallagher Sep 18 '08 at 22:53
vote up 3 vote down

I typically use:

import subprocess

p = subprocess.Popen('ls', shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
for line in p.stdout.readlines():
    print line,
retval = p.wait()

You are free to do what you want with the stdout data in the pipe. In fact, you can simply omit those parameters (stdout= and stderr=) and it'll behave like os.system().

link|flag
vote up 1 vote down

os.system has been superceeded by the subprocess module. Use subproccess instead.

link|flag
vote up 1 vote down

os.system is OK, but kind of dated. It's also not very secure. Instead, try subprocess. subprocess does not call sh directly and is therefore more secure than os.system.

Get more information at http://docs.python.org/lib/module-subprocess.html

link|flag
vote up -1 vote down
import os
os.system("your command")

Note that this is dangerous, since the command isn't cleaned. I leave it up to you to google for the relevant docs on the 'os' and 'sys' modules. There are a bunch of functions (exec* , spawn*) that will do similar things.

link|flag
vote up -1 vote down
import os
cmd = 'ls -al'
os.system(cmd)

If you want to return the results of the command you need os.popen:

link|flag
vote up -1 vote down

http://www.python.org/doc/2.5/lib/module-subprocess.html

...or for a very simple command:

import os
os.system('cat testfile')
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.