Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | :mod:`subprocess` --- Subprocess management |
| 2 | =========================================== |
| 3 | |
| 4 | .. module:: subprocess |
| 5 | :synopsis: Subprocess management. |
| 6 | .. moduleauthor:: Peter Åstrand <astrand@lysator.liu.se> |
| 7 | .. sectionauthor:: Peter Åstrand <astrand@lysator.liu.se> |
| 8 | |
| 9 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 10 | The :mod:`subprocess` module allows you to spawn new processes, connect to their |
| 11 | input/output/error pipes, and obtain their return codes. This module intends to |
| 12 | replace several other, older modules and functions, such as:: |
| 13 | |
| 14 | os.system |
| 15 | os.spawn* |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 16 | |
| 17 | Information about how the :mod:`subprocess` module can be used to replace these |
| 18 | modules and functions can be found in the following sections. |
| 19 | |
Benjamin Peterson | 4118174 | 2008-07-02 20:22:54 +0000 | [diff] [blame] | 20 | .. seealso:: |
| 21 | |
| 22 | :pep:`324` -- PEP proposing the subprocess module |
| 23 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 24 | |
| 25 | Using the subprocess Module |
| 26 | --------------------------- |
| 27 | |
| 28 | This module defines one class called :class:`Popen`: |
| 29 | |
| 30 | |
| 31 | .. class:: Popen(args, bufsize=0, executable=None, stdin=None, stdout=None, stderr=None, preexec_fn=None, close_fds=False, shell=False, cwd=None, env=None, universal_newlines=False, startupinfo=None, creationflags=0) |
| 32 | |
| 33 | Arguments are: |
| 34 | |
Benjamin Peterson | d18de0e | 2008-07-31 20:21:46 +0000 | [diff] [blame] | 35 | *args* should be a string, or a sequence of program arguments. The program |
Benjamin Peterson | fa0d703 | 2009-06-01 22:42:33 +0000 | [diff] [blame] | 36 | to execute is normally the first item in the args sequence or the string if |
| 37 | a string is given, but can be explicitly set by using the *executable* |
| 38 | argument. When *executable* is given, the first item in the args sequence |
| 39 | is still treated by most programs as the command name, which can then be |
| 40 | different from the actual executable name. On Unix, it becomes the display |
| 41 | name for the executing program in utilities such as :program:`ps`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 42 | |
| 43 | On Unix, with *shell=False* (default): In this case, the Popen class uses |
| 44 | :meth:`os.execvp` to execute the child program. *args* should normally be a |
R. David Murray | 13cc4fd | 2010-02-04 16:44:31 +0000 | [diff] [blame] | 45 | sequence. If a string is specified for *args*, it will be used as the name |
| 46 | or path of the program to execute; this will only work if the program is |
| 47 | being given no arguments. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 48 | |
R. David Murray | 13cc4fd | 2010-02-04 16:44:31 +0000 | [diff] [blame] | 49 | .. note:: |
| 50 | |
| 51 | :meth:`shlex.split` can be useful when determining the correct |
| 52 | tokenization for *args*, especially in complex cases:: |
| 53 | |
| 54 | >>> import shlex, subprocess |
R. David Murray | 2c4f8d1 | 2010-02-05 16:26:37 +0000 | [diff] [blame] | 55 | >>> command_line = input() |
R. David Murray | 13cc4fd | 2010-02-04 16:44:31 +0000 | [diff] [blame] | 56 | /bin/vikings -input eggs.txt -output "spam spam.txt" -cmd "echo '$MONEY'" |
| 57 | >>> args = shlex.split(command_line) |
| 58 | >>> print(args) |
| 59 | ['/bin/vikings', '-input', 'eggs.txt', '-output', 'spam spam.txt', '-cmd', "echo '$MONEY'"] |
| 60 | >>> p = subprocess.Popen(args) # Success! |
| 61 | |
| 62 | Note in particular that options (such as *-input*) and arguments (such |
| 63 | as *eggs.txt*) that are separated by whitespace in the shell go in separate |
| 64 | list elements, while arguments that need quoting or backslash escaping when |
| 65 | used in the shell (such as filenames containing spaces or the *echo* command |
| 66 | shown above) are single list elements. |
| 67 | |
| 68 | On Unix, with *shell=True*: If args is a string, it specifies the command |
| 69 | string to execute through the shell. This means that the string must be |
| 70 | formatted exactly as it would be when typed at the shell prompt. This |
| 71 | includes, for example, quoting or backslash escaping filenames with spaces in |
| 72 | them. If *args* is a sequence, the first item specifies the command string, and |
| 73 | any additional items will be treated as additional arguments to the shell |
| 74 | itself. That is to say, *Popen* does the equivalent of:: |
| 75 | |
| 76 | Popen(['/bin/sh', '-c', args[0], args[1], ...]) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 77 | |
R. David Murray | f959b7f | 2010-11-12 00:38:41 +0000 | [diff] [blame] | 78 | .. warning:: |
| 79 | |
| 80 | Executing shell commands that incorporate unsanitized input from an |
| 81 | untrusted source makes a program vulnerable to `shell injection |
| 82 | <http://en.wikipedia.org/wiki/Shell_injection#Shell_injection>`_, |
| 83 | a serious security flaw which can result in arbitrary command execution. |
| 84 | For this reason, the use of *shell=True* is **strongly discouraged** in cases |
| 85 | where the command string is constructed from external input:: |
| 86 | |
| 87 | >>> from subprocess import call |
| 88 | >>> filename = input("What file would you like to display?\n") |
| 89 | What file would you like to display? |
| 90 | non_existent; rm -rf / # |
| 91 | >>> call("cat " + filename, shell=True) # Uh-oh. This will end badly... |
| 92 | |
| 93 | *shell=False* does not suffer from this vulnerability; the above Note may be |
| 94 | helpful in getting code using *shell=False* to work. |
| 95 | |
Eli Bendersky | 046a764 | 2011-04-15 07:23:26 +0300 | [diff] [blame] | 96 | On Windows: the :class:`Popen` class uses CreateProcess() to execute the |
| 97 | child program, which operates on strings. If *args* is a sequence, it will |
| 98 | be converted to a string in a manner described in |
| 99 | :ref:`converting-argument-sequence`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 100 | |
| 101 | *bufsize*, if given, has the same meaning as the corresponding argument to the |
| 102 | built-in open() function: :const:`0` means unbuffered, :const:`1` means line |
| 103 | buffered, any other positive value means use a buffer of (approximately) that |
| 104 | size. A negative *bufsize* means to use the system default, which usually means |
| 105 | fully buffered. The default value for *bufsize* is :const:`0` (unbuffered). |
| 106 | |
Antoine Pitrou | 5050bb2 | 2010-06-02 17:11:32 +0000 | [diff] [blame] | 107 | .. note:: |
| 108 | |
| 109 | If you experience performance issues, it is recommended that you try to |
| 110 | enable buffering by setting *bufsize* to either -1 or a large enough |
| 111 | positive value (such as 4096). |
| 112 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 113 | The *executable* argument specifies the program to execute. It is very seldom |
| 114 | needed: Usually, the program to execute is defined by the *args* argument. If |
| 115 | ``shell=True``, the *executable* argument specifies which shell to use. On Unix, |
| 116 | the default shell is :file:`/bin/sh`. On Windows, the default shell is |
Georg Brandl | bcc484e | 2009-08-13 11:51:54 +0000 | [diff] [blame] | 117 | specified by the :envvar:`COMSPEC` environment variable. The only reason you |
| 118 | would need to specify ``shell=True`` on Windows is where the command you |
| 119 | wish to execute is actually built in to the shell, eg ``dir``, ``copy``. |
| 120 | You don't need ``shell=True`` to run a batch file, nor to run a console-based |
| 121 | executable. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 122 | |
| 123 | *stdin*, *stdout* and *stderr* specify the executed programs' standard input, |
Georg Brandl | af265f4 | 2008-12-07 15:06:20 +0000 | [diff] [blame] | 124 | standard output and standard error file handles, respectively. Valid values |
| 125 | are :data:`PIPE`, an existing file descriptor (a positive integer), an |
Antoine Pitrou | 25d535e | 2010-09-15 11:25:11 +0000 | [diff] [blame] | 126 | existing :term:`file object`, and ``None``. :data:`PIPE` indicates that a |
| 127 | new pipe to the child should be created. With ``None``, no redirection will |
| 128 | occur; the child's file handles will be inherited from the parent. Additionally, |
Georg Brandl | af265f4 | 2008-12-07 15:06:20 +0000 | [diff] [blame] | 129 | *stderr* can be :data:`STDOUT`, which indicates that the stderr data from the |
| 130 | applications should be captured into the same file handle as for stdout. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 131 | |
| 132 | If *preexec_fn* is set to a callable object, this object will be called in the |
| 133 | child process just before the child is executed. (Unix only) |
| 134 | |
| 135 | If *close_fds* is true, all file descriptors except :const:`0`, :const:`1` and |
| 136 | :const:`2` will be closed before the child process is executed. (Unix only). |
| 137 | Or, on Windows, if *close_fds* is true then no handles will be inherited by the |
| 138 | child process. Note that on Windows, you cannot set *close_fds* to true and |
| 139 | also redirect the standard handles by setting *stdin*, *stdout* or *stderr*. |
| 140 | |
| 141 | If *shell* is :const:`True`, the specified command will be executed through the |
| 142 | shell. |
| 143 | |
| 144 | If *cwd* is not ``None``, the child's current directory will be changed to *cwd* |
| 145 | before it is executed. Note that this directory is not considered when |
| 146 | searching the executable, so you can't specify the program's path relative to |
| 147 | *cwd*. |
| 148 | |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 149 | If *env* is not ``None``, it must be a mapping that defines the environment |
| 150 | variables for the new process; these are used instead of inheriting the current |
| 151 | process' environment, which is the default behavior. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 152 | |
R. David Murray | 1055e89 | 2009-04-16 18:15:32 +0000 | [diff] [blame] | 153 | .. note:: |
R. David Murray | f4ac149 | 2009-04-15 22:35:15 +0000 | [diff] [blame] | 154 | |
Georg Brandl | 8ffe0bc | 2010-10-06 07:17:29 +0000 | [diff] [blame] | 155 | If specified, *env* must provide any variables required for the program to |
| 156 | execute. On Windows, in order to run a `side-by-side assembly`_ the |
| 157 | specified *env* **must** include a valid :envvar:`SystemRoot`. |
R. David Murray | f4ac149 | 2009-04-15 22:35:15 +0000 | [diff] [blame] | 158 | |
R. David Murray | 1055e89 | 2009-04-16 18:15:32 +0000 | [diff] [blame] | 159 | .. _side-by-side assembly: http://en.wikipedia.org/wiki/Side-by-Side_Assembly |
| 160 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 161 | If *universal_newlines* is :const:`True`, the file objects stdout and stderr are |
| 162 | opened as text files, but lines may be terminated by any of ``'\n'``, the Unix |
Georg Brandl | c575c90 | 2008-09-13 17:46:05 +0000 | [diff] [blame] | 163 | end-of-line convention, ``'\r'``, the old Macintosh convention or ``'\r\n'``, the |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 164 | Windows convention. All of these external representations are seen as ``'\n'`` |
| 165 | by the Python program. |
| 166 | |
| 167 | .. note:: |
| 168 | |
Georg Brandl | b044b2a | 2009-09-16 16:05:59 +0000 | [diff] [blame] | 169 | This feature is only available if Python is built with universal newline |
| 170 | support (the default). Also, the newlines attribute of the file objects |
| 171 | :attr:`stdout`, :attr:`stdin` and :attr:`stderr` are not updated by the |
| 172 | :meth:`communicate` method. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 173 | |
| 174 | The *startupinfo* and *creationflags*, if given, will be passed to the |
| 175 | underlying CreateProcess() function. They can specify things such as appearance |
| 176 | of the main window and priority for the new process. (Windows only) |
| 177 | |
| 178 | |
Georg Brandl | af265f4 | 2008-12-07 15:06:20 +0000 | [diff] [blame] | 179 | .. data:: PIPE |
| 180 | |
| 181 | Special value that can be used as the *stdin*, *stdout* or *stderr* argument |
| 182 | to :class:`Popen` and indicates that a pipe to the standard stream should be |
| 183 | opened. |
| 184 | |
| 185 | |
| 186 | .. data:: STDOUT |
| 187 | |
| 188 | Special value that can be used as the *stderr* argument to :class:`Popen` and |
| 189 | indicates that standard error should go into the same handle as standard |
| 190 | output. |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 191 | |
Georg Brandl | af265f4 | 2008-12-07 15:06:20 +0000 | [diff] [blame] | 192 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 193 | Convenience Functions |
| 194 | ^^^^^^^^^^^^^^^^^^^^^ |
| 195 | |
Ezio Melotti | 8dfcab0 | 2011-04-19 23:15:13 +0300 | [diff] [blame] | 196 | This module also defines the following shortcut functions: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 197 | |
| 198 | |
| 199 | .. function:: call(*popenargs, **kwargs) |
| 200 | |
| 201 | Run command with arguments. Wait for command to complete, then return the |
| 202 | :attr:`returncode` attribute. |
| 203 | |
| 204 | The arguments are the same as for the Popen constructor. Example:: |
| 205 | |
Georg Brandl | 8ffe0bc | 2010-10-06 07:17:29 +0000 | [diff] [blame] | 206 | >>> retcode = subprocess.call(["ls", "-l"]) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 207 | |
Philip Jenvey | ab7481a | 2009-05-22 05:46:35 +0000 | [diff] [blame] | 208 | .. warning:: |
| 209 | |
| 210 | Like :meth:`Popen.wait`, this will deadlock if the child process |
| 211 | generates enough output to a stdout or stderr pipe such that it blocks |
| 212 | waiting for the OS pipe buffer to accept more data. |
| 213 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 214 | |
| 215 | .. function:: check_call(*popenargs, **kwargs) |
| 216 | |
| 217 | Run command with arguments. Wait for command to complete. If the exit code was |
Benjamin Peterson | e5384b0 | 2008-10-04 22:00:42 +0000 | [diff] [blame] | 218 | zero then return, otherwise raise :exc:`CalledProcessError`. The |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 219 | :exc:`CalledProcessError` object will have the return code in the |
| 220 | :attr:`returncode` attribute. |
| 221 | |
| 222 | The arguments are the same as for the Popen constructor. Example:: |
| 223 | |
Georg Brandl | 8ffe0bc | 2010-10-06 07:17:29 +0000 | [diff] [blame] | 224 | >>> subprocess.check_call(["ls", "-l"]) |
| 225 | 0 |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 226 | |
Philip Jenvey | ab7481a | 2009-05-22 05:46:35 +0000 | [diff] [blame] | 227 | .. warning:: |
| 228 | |
| 229 | See the warning for :func:`call`. |
| 230 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 231 | |
Georg Brandl | f973407 | 2008-12-07 15:30:06 +0000 | [diff] [blame] | 232 | .. function:: check_output(*popenargs, **kwargs) |
| 233 | |
| 234 | Run command with arguments and return its output as a byte string. |
| 235 | |
Benjamin Peterson | aa06900 | 2009-01-23 03:26:36 +0000 | [diff] [blame] | 236 | If the exit code was non-zero it raises a :exc:`CalledProcessError`. The |
| 237 | :exc:`CalledProcessError` object will have the return code in the |
| 238 | :attr:`returncode` |
| 239 | attribute and output in the :attr:`output` attribute. |
Georg Brandl | f973407 | 2008-12-07 15:30:06 +0000 | [diff] [blame] | 240 | |
Benjamin Peterson | 25c95f1 | 2009-05-08 20:42:26 +0000 | [diff] [blame] | 241 | The arguments are the same as for the :class:`Popen` constructor. Example:: |
Georg Brandl | f973407 | 2008-12-07 15:30:06 +0000 | [diff] [blame] | 242 | |
| 243 | >>> subprocess.check_output(["ls", "-l", "/dev/null"]) |
Georg Brandl | 8ffe0bc | 2010-10-06 07:17:29 +0000 | [diff] [blame] | 244 | b'crw-rw-rw- 1 root root 1, 3 Oct 18 2007 /dev/null\n' |
Georg Brandl | f973407 | 2008-12-07 15:30:06 +0000 | [diff] [blame] | 245 | |
| 246 | The stdout argument is not allowed as it is used internally. |
Benjamin Peterson | 25c95f1 | 2009-05-08 20:42:26 +0000 | [diff] [blame] | 247 | To capture standard error in the result, use ``stderr=subprocess.STDOUT``:: |
Georg Brandl | f973407 | 2008-12-07 15:30:06 +0000 | [diff] [blame] | 248 | |
| 249 | >>> subprocess.check_output( |
Georg Brandl | 8ffe0bc | 2010-10-06 07:17:29 +0000 | [diff] [blame] | 250 | ... ["/bin/sh", "-c", "ls non_existent_file; exit 0"], |
| 251 | ... stderr=subprocess.STDOUT) |
| 252 | b'ls: non_existent_file: No such file or directory\n' |
Georg Brandl | f973407 | 2008-12-07 15:30:06 +0000 | [diff] [blame] | 253 | |
| 254 | .. versionadded:: 3.1 |
| 255 | |
| 256 | |
Brett Cannon | a23810f | 2008-05-26 19:04:21 +0000 | [diff] [blame] | 257 | .. function:: getstatusoutput(cmd) |
Georg Brandl | d098c3d | 2010-10-06 10:38:58 +0000 | [diff] [blame] | 258 | |
Brett Cannon | a23810f | 2008-05-26 19:04:21 +0000 | [diff] [blame] | 259 | Return ``(status, output)`` of executing *cmd* in a shell. |
| 260 | |
| 261 | Execute the string *cmd* in a shell with :func:`os.popen` and return a 2-tuple |
| 262 | ``(status, output)``. *cmd* is actually run as ``{ cmd ; } 2>&1``, so that the |
| 263 | returned output will contain output or error messages. A trailing newline is |
| 264 | stripped from the output. The exit status for the command can be interpreted |
| 265 | according to the rules for the C function :cfunc:`wait`. Example:: |
| 266 | |
Brett Cannon | a23810f | 2008-05-26 19:04:21 +0000 | [diff] [blame] | 267 | >>> subprocess.getstatusoutput('ls /bin/ls') |
| 268 | (0, '/bin/ls') |
| 269 | >>> subprocess.getstatusoutput('cat /bin/junk') |
| 270 | (256, 'cat: /bin/junk: No such file or directory') |
| 271 | >>> subprocess.getstatusoutput('/bin/junk') |
| 272 | (256, 'sh: /bin/junk: not found') |
| 273 | |
Georg Brandl | 7d41890 | 2008-12-27 19:08:11 +0000 | [diff] [blame] | 274 | Availability: UNIX. |
| 275 | |
Brett Cannon | a23810f | 2008-05-26 19:04:21 +0000 | [diff] [blame] | 276 | |
| 277 | .. function:: getoutput(cmd) |
Georg Brandl | d098c3d | 2010-10-06 10:38:58 +0000 | [diff] [blame] | 278 | |
Georg Brandl | f973407 | 2008-12-07 15:30:06 +0000 | [diff] [blame] | 279 | Return output (stdout and stderr) of executing *cmd* in a shell. |
Brett Cannon | a23810f | 2008-05-26 19:04:21 +0000 | [diff] [blame] | 280 | |
| 281 | Like :func:`getstatusoutput`, except the exit status is ignored and the return |
| 282 | value is a string containing the command's output. Example:: |
| 283 | |
Brett Cannon | a23810f | 2008-05-26 19:04:21 +0000 | [diff] [blame] | 284 | >>> subprocess.getoutput('ls /bin/ls') |
| 285 | '/bin/ls' |
| 286 | |
Georg Brandl | 7d41890 | 2008-12-27 19:08:11 +0000 | [diff] [blame] | 287 | Availability: UNIX. |
| 288 | |
Brett Cannon | a23810f | 2008-05-26 19:04:21 +0000 | [diff] [blame] | 289 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 290 | Exceptions |
| 291 | ^^^^^^^^^^ |
| 292 | |
| 293 | Exceptions raised in the child process, before the new program has started to |
| 294 | execute, will be re-raised in the parent. Additionally, the exception object |
| 295 | will have one extra attribute called :attr:`child_traceback`, which is a string |
Georg Brandl | 57a5e3f | 2010-10-06 08:54:16 +0000 | [diff] [blame] | 296 | containing traceback information from the child's point of view. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 297 | |
| 298 | The most common exception raised is :exc:`OSError`. This occurs, for example, |
| 299 | when trying to execute a non-existent file. Applications should prepare for |
| 300 | :exc:`OSError` exceptions. |
| 301 | |
| 302 | A :exc:`ValueError` will be raised if :class:`Popen` is called with invalid |
| 303 | arguments. |
| 304 | |
| 305 | check_call() will raise :exc:`CalledProcessError`, if the called process returns |
| 306 | a non-zero return code. |
| 307 | |
| 308 | |
| 309 | Security |
| 310 | ^^^^^^^^ |
| 311 | |
| 312 | Unlike some other popen functions, this implementation will never call /bin/sh |
| 313 | implicitly. This means that all characters, including shell metacharacters, can |
| 314 | safely be passed to child processes. |
| 315 | |
| 316 | |
| 317 | Popen Objects |
| 318 | ------------- |
| 319 | |
| 320 | Instances of the :class:`Popen` class have the following methods: |
| 321 | |
| 322 | |
| 323 | .. method:: Popen.poll() |
| 324 | |
Christian Heimes | 7f04431 | 2008-01-06 17:05:40 +0000 | [diff] [blame] | 325 | Check if child process has terminated. Set and return :attr:`returncode` |
| 326 | attribute. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 327 | |
| 328 | |
| 329 | .. method:: Popen.wait() |
| 330 | |
Christian Heimes | 7f04431 | 2008-01-06 17:05:40 +0000 | [diff] [blame] | 331 | Wait for child process to terminate. Set and return :attr:`returncode` |
| 332 | attribute. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 333 | |
Georg Brandl | 734e268 | 2008-08-12 08:18:18 +0000 | [diff] [blame] | 334 | .. warning:: |
| 335 | |
| 336 | This will deadlock if the child process generates enough output to a |
| 337 | stdout or stderr pipe such that it blocks waiting for the OS pipe buffer |
| 338 | to accept more data. Use :meth:`communicate` to avoid that. |
| 339 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 340 | |
| 341 | .. method:: Popen.communicate(input=None) |
| 342 | |
| 343 | Interact with process: Send data to stdin. Read data from stdout and stderr, |
| 344 | until end-of-file is reached. Wait for process to terminate. The optional |
Georg Brandl | e11787a | 2008-07-01 19:10:52 +0000 | [diff] [blame] | 345 | *input* argument should be a byte string to be sent to the child process, or |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 346 | ``None``, if no data should be sent to the child. |
| 347 | |
Georg Brandl | af265f4 | 2008-12-07 15:06:20 +0000 | [diff] [blame] | 348 | :meth:`communicate` returns a tuple ``(stdoutdata, stderrdata)``. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 349 | |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 350 | Note that if you want to send data to the process's stdin, you need to create |
| 351 | the Popen object with ``stdin=PIPE``. Similarly, to get anything other than |
| 352 | ``None`` in the result tuple, you need to give ``stdout=PIPE`` and/or |
| 353 | ``stderr=PIPE`` too. |
| 354 | |
Christian Heimes | 7f04431 | 2008-01-06 17:05:40 +0000 | [diff] [blame] | 355 | .. note:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 356 | |
Christian Heimes | 7f04431 | 2008-01-06 17:05:40 +0000 | [diff] [blame] | 357 | The data read is buffered in memory, so do not use this method if the data |
| 358 | size is large or unlimited. |
| 359 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 360 | |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 361 | .. method:: Popen.send_signal(signal) |
| 362 | |
| 363 | Sends the signal *signal* to the child. |
| 364 | |
| 365 | .. note:: |
| 366 | |
| 367 | On Windows only SIGTERM is supported so far. It's an alias for |
| 368 | :meth:`terminate`. |
| 369 | |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 370 | |
| 371 | .. method:: Popen.terminate() |
| 372 | |
| 373 | Stop the child. On Posix OSs the method sends SIGTERM to the |
Christian Heimes | 81ee3ef | 2008-05-04 22:42:01 +0000 | [diff] [blame] | 374 | child. On Windows the Win32 API function :cfunc:`TerminateProcess` is called |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 375 | to stop the child. |
| 376 | |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 377 | |
| 378 | .. method:: Popen.kill() |
| 379 | |
| 380 | Kills the child. On Posix OSs the function sends SIGKILL to the child. |
| 381 | On Windows :meth:`kill` is an alias for :meth:`terminate`. |
| 382 | |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 383 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 384 | The following attributes are also available: |
| 385 | |
Georg Brandl | 734e268 | 2008-08-12 08:18:18 +0000 | [diff] [blame] | 386 | .. warning:: |
| 387 | |
Georg Brandl | e720c0a | 2009-04-27 16:20:50 +0000 | [diff] [blame] | 388 | Use :meth:`communicate` rather than :attr:`.stdin.write <stdin>`, |
| 389 | :attr:`.stdout.read <stdout>` or :attr:`.stderr.read <stderr>` to avoid |
| 390 | deadlocks due to any of the other OS pipe buffers filling up and blocking the |
| 391 | child process. |
Georg Brandl | 734e268 | 2008-08-12 08:18:18 +0000 | [diff] [blame] | 392 | |
| 393 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 394 | .. attribute:: Popen.stdin |
| 395 | |
Antoine Pitrou | 25d535e | 2010-09-15 11:25:11 +0000 | [diff] [blame] | 396 | If the *stdin* argument was :data:`PIPE`, this attribute is a :term:`file |
| 397 | object` that provides input to the child process. Otherwise, it is ``None``. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 398 | |
| 399 | |
| 400 | .. attribute:: Popen.stdout |
| 401 | |
Antoine Pitrou | 25d535e | 2010-09-15 11:25:11 +0000 | [diff] [blame] | 402 | If the *stdout* argument was :data:`PIPE`, this attribute is a :term:`file |
| 403 | object` that provides output from the child process. Otherwise, it is ``None``. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 404 | |
| 405 | |
| 406 | .. attribute:: Popen.stderr |
| 407 | |
Antoine Pitrou | 25d535e | 2010-09-15 11:25:11 +0000 | [diff] [blame] | 408 | If the *stderr* argument was :data:`PIPE`, this attribute is a :term:`file |
| 409 | object` that provides error output from the child process. Otherwise, it is |
Georg Brandl | af265f4 | 2008-12-07 15:06:20 +0000 | [diff] [blame] | 410 | ``None``. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 411 | |
| 412 | |
| 413 | .. attribute:: Popen.pid |
| 414 | |
| 415 | The process ID of the child process. |
| 416 | |
Georg Brandl | 16215c7 | 2010-10-06 07:59:52 +0000 | [diff] [blame] | 417 | Note that if you set the *shell* argument to ``True``, this is the process ID |
| 418 | of the spawned shell. |
| 419 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 420 | |
| 421 | .. attribute:: Popen.returncode |
| 422 | |
Christian Heimes | 7f04431 | 2008-01-06 17:05:40 +0000 | [diff] [blame] | 423 | The child return code, set by :meth:`poll` and :meth:`wait` (and indirectly |
| 424 | by :meth:`communicate`). A ``None`` value indicates that the process |
| 425 | hasn't terminated yet. |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 426 | |
Christian Heimes | 7f04431 | 2008-01-06 17:05:40 +0000 | [diff] [blame] | 427 | A negative value ``-N`` indicates that the child was terminated by signal |
| 428 | ``N`` (Unix only). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 429 | |
| 430 | |
Benjamin Peterson | dcf97b9 | 2008-07-02 17:30:14 +0000 | [diff] [blame] | 431 | .. _subprocess-replacements: |
| 432 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 433 | Replacing Older Functions with the subprocess Module |
| 434 | ---------------------------------------------------- |
| 435 | |
| 436 | In this section, "a ==> b" means that b can be used as a replacement for a. |
| 437 | |
| 438 | .. note:: |
| 439 | |
| 440 | All functions in this section fail (more or less) silently if the executed |
| 441 | program cannot be found; this module raises an :exc:`OSError` exception. |
| 442 | |
| 443 | In the following examples, we assume that the subprocess module is imported with |
| 444 | "from subprocess import \*". |
| 445 | |
| 446 | |
| 447 | Replacing /bin/sh shell backquote |
| 448 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 449 | |
| 450 | :: |
| 451 | |
| 452 | output=`mycmd myarg` |
| 453 | ==> |
| 454 | output = Popen(["mycmd", "myarg"], stdout=PIPE).communicate()[0] |
| 455 | |
| 456 | |
Benjamin Peterson | f10a79a | 2008-10-11 00:49:57 +0000 | [diff] [blame] | 457 | Replacing shell pipeline |
| 458 | ^^^^^^^^^^^^^^^^^^^^^^^^ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 459 | |
| 460 | :: |
| 461 | |
| 462 | output=`dmesg | grep hda` |
| 463 | ==> |
| 464 | p1 = Popen(["dmesg"], stdout=PIPE) |
| 465 | p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE) |
Gregory P. Smith | 8095b65 | 2011-02-05 21:51:27 +0000 | [diff] [blame] | 466 | p1.stdout.close() # Allow p1 to receive a SIGPIPE if p2 exits. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 467 | output = p2.communicate()[0] |
| 468 | |
Gregory P. Smith | 8095b65 | 2011-02-05 21:51:27 +0000 | [diff] [blame] | 469 | The p1.stdout.close() call after starting the p2 is important in order for p1 |
| 470 | to receive a SIGPIPE if p2 exits before p1. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 471 | |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 472 | Replacing :func:`os.system` |
| 473 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 474 | |
| 475 | :: |
| 476 | |
| 477 | sts = os.system("mycmd" + " myarg") |
| 478 | ==> |
| 479 | p = Popen("mycmd" + " myarg", shell=True) |
Georg Brandl | d80344f | 2009-08-13 12:26:19 +0000 | [diff] [blame] | 480 | sts = os.waitpid(p.pid, 0)[1] |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 481 | |
| 482 | Notes: |
| 483 | |
| 484 | * Calling the program through the shell is usually not required. |
| 485 | |
| 486 | * It's easier to look at the :attr:`returncode` attribute than the exit status. |
| 487 | |
| 488 | A more realistic example would look like this:: |
| 489 | |
| 490 | try: |
| 491 | retcode = call("mycmd" + " myarg", shell=True) |
| 492 | if retcode < 0: |
Collin Winter | c79461b | 2007-09-01 23:34:30 +0000 | [diff] [blame] | 493 | print("Child was terminated by signal", -retcode, file=sys.stderr) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 494 | else: |
Collin Winter | c79461b | 2007-09-01 23:34:30 +0000 | [diff] [blame] | 495 | print("Child returned", retcode, file=sys.stderr) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 496 | except OSError as e: |
Collin Winter | c79461b | 2007-09-01 23:34:30 +0000 | [diff] [blame] | 497 | print("Execution failed:", e, file=sys.stderr) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 498 | |
| 499 | |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 500 | Replacing the :func:`os.spawn <os.spawnl>` family |
| 501 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 502 | |
| 503 | P_NOWAIT example:: |
| 504 | |
| 505 | pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg") |
| 506 | ==> |
| 507 | pid = Popen(["/bin/mycmd", "myarg"]).pid |
| 508 | |
| 509 | P_WAIT example:: |
| 510 | |
| 511 | retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg") |
| 512 | ==> |
| 513 | retcode = call(["/bin/mycmd", "myarg"]) |
| 514 | |
| 515 | Vector example:: |
| 516 | |
| 517 | os.spawnvp(os.P_NOWAIT, path, args) |
| 518 | ==> |
| 519 | Popen([path] + args[1:]) |
| 520 | |
| 521 | Environment example:: |
| 522 | |
| 523 | os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env) |
| 524 | ==> |
| 525 | Popen(["/bin/mycmd", "myarg"], env={"PATH": "/usr/bin"}) |
| 526 | |
| 527 | |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 528 | |
| 529 | Replacing :func:`os.popen`, :func:`os.popen2`, :func:`os.popen3` |
| 530 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 531 | |
| 532 | :: |
| 533 | |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 534 | (child_stdin, child_stdout) = os.popen2(cmd, mode, bufsize) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 535 | ==> |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 536 | p = Popen(cmd, shell=True, bufsize=bufsize, |
| 537 | stdin=PIPE, stdout=PIPE, close_fds=True) |
| 538 | (child_stdin, child_stdout) = (p.stdin, p.stdout) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 539 | |
| 540 | :: |
| 541 | |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 542 | (child_stdin, |
| 543 | child_stdout, |
| 544 | child_stderr) = os.popen3(cmd, mode, bufsize) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 545 | ==> |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 546 | p = Popen(cmd, shell=True, bufsize=bufsize, |
| 547 | stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True) |
| 548 | (child_stdin, |
| 549 | child_stdout, |
| 550 | child_stderr) = (p.stdin, p.stdout, p.stderr) |
| 551 | |
| 552 | :: |
| 553 | |
| 554 | (child_stdin, child_stdout_and_stderr) = os.popen4(cmd, mode, bufsize) |
| 555 | ==> |
| 556 | p = Popen(cmd, shell=True, bufsize=bufsize, |
| 557 | stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True) |
| 558 | (child_stdin, child_stdout_and_stderr) = (p.stdin, p.stdout) |
| 559 | |
| 560 | Return code handling translates as follows:: |
| 561 | |
| 562 | pipe = os.popen(cmd, 'w') |
| 563 | ... |
| 564 | rc = pipe.close() |
Stefan Krah | 5a5031f | 2010-07-14 10:19:40 +0000 | [diff] [blame] | 565 | if rc is not None and rc >> 8: |
Ezio Melotti | 713e042 | 2009-09-13 08:13:21 +0000 | [diff] [blame] | 566 | print("There were some errors") |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 567 | ==> |
| 568 | process = Popen(cmd, 'w', stdin=PIPE) |
| 569 | ... |
| 570 | process.stdin.close() |
| 571 | if process.wait() != 0: |
Ezio Melotti | 713e042 | 2009-09-13 08:13:21 +0000 | [diff] [blame] | 572 | print("There were some errors") |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 573 | |
| 574 | |
| 575 | Replacing functions from the :mod:`popen2` module |
| 576 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 577 | |
| 578 | .. note:: |
| 579 | |
| 580 | If the cmd argument to popen2 functions is a string, the command is executed |
| 581 | through /bin/sh. If it is a list, the command is directly executed. |
| 582 | |
| 583 | :: |
| 584 | |
| 585 | (child_stdout, child_stdin) = popen2.popen2("somestring", bufsize, mode) |
| 586 | ==> |
| 587 | p = Popen(["somestring"], shell=True, bufsize=bufsize, |
| 588 | stdin=PIPE, stdout=PIPE, close_fds=True) |
| 589 | (child_stdout, child_stdin) = (p.stdout, p.stdin) |
| 590 | |
| 591 | :: |
| 592 | |
| 593 | (child_stdout, child_stdin) = popen2.popen2(["mycmd", "myarg"], bufsize, mode) |
| 594 | ==> |
| 595 | p = Popen(["mycmd", "myarg"], bufsize=bufsize, |
| 596 | stdin=PIPE, stdout=PIPE, close_fds=True) |
| 597 | (child_stdout, child_stdin) = (p.stdout, p.stdin) |
| 598 | |
| 599 | :class:`popen2.Popen3` and :class:`popen2.Popen4` basically work as |
| 600 | :class:`subprocess.Popen`, except that: |
| 601 | |
| 602 | * :class:`Popen` raises an exception if the execution fails. |
| 603 | |
| 604 | * the *capturestderr* argument is replaced with the *stderr* argument. |
| 605 | |
| 606 | * ``stdin=PIPE`` and ``stdout=PIPE`` must be specified. |
| 607 | |
| 608 | * popen2 closes all file descriptors by default, but you have to specify |
| 609 | ``close_fds=True`` with :class:`Popen`. |
Eli Bendersky | 046a764 | 2011-04-15 07:23:26 +0300 | [diff] [blame] | 610 | |
| 611 | Notes |
| 612 | ----- |
| 613 | |
| 614 | .. _converting-argument-sequence: |
| 615 | |
| 616 | Converting an argument sequence to a string on Windows |
| 617 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 618 | |
| 619 | On Windows, an *args* sequence is converted to a string that can be parsed |
| 620 | using the following rules (which correspond to the rules used by the MS C |
| 621 | runtime): |
| 622 | |
| 623 | 1. Arguments are delimited by white space, which is either a |
| 624 | space or a tab. |
| 625 | |
| 626 | 2. A string surrounded by double quotation marks is |
| 627 | interpreted as a single argument, regardless of white space |
| 628 | contained within. A quoted string can be embedded in an |
| 629 | argument. |
| 630 | |
| 631 | 3. A double quotation mark preceded by a backslash is |
| 632 | interpreted as a literal double quotation mark. |
| 633 | |
| 634 | 4. Backslashes are interpreted literally, unless they |
| 635 | immediately precede a double quotation mark. |
| 636 | |
| 637 | 5. If backslashes immediately precede a double quotation mark, |
| 638 | every pair of backslashes is interpreted as a literal |
| 639 | backslash. If the number of backslashes is odd, the last |
| 640 | backslash escapes the next double quotation mark as |
| 641 | described in rule 3. |
| 642 | |