I want to be able to call external command in Python.
Thanks for your help!
|
5
|
|
|
|
|
|
Look at the subprocess module in the sdtlib:
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. |
||
|
|
I typically use:
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(). |
||
|
|
|
|
Here's a summary of the ways to call external programs and the advantages and disadvantages of each:
The |
||
|
|
|
|
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 |
||
|
|
|
|
os.system has been superceeded by the subprocess module. Use subproccess instead. |
||
|
|
|
|
http://www.python.org/doc/2.5/lib/module-subprocess.html ...or for a very simple command:
|
||
|
|
|
|
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
|
||||
|
|
|
If you want to return the results of the command you need os.popen: |
||
|
|
|
|
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. |
||
|
|