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. |
Terry Jan Reedy | fa089b9 | 2016-06-11 15:02:54 -0400 | [diff] [blame] | 6 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 7 | .. moduleauthor:: Peter Åstrand <astrand@lysator.liu.se> |
| 8 | .. sectionauthor:: Peter Åstrand <astrand@lysator.liu.se> |
| 9 | |
Terry Jan Reedy | fa089b9 | 2016-06-11 15:02:54 -0400 | [diff] [blame] | 10 | **Source code:** :source:`Lib/subprocess.py` |
| 11 | |
| 12 | -------------- |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 13 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 14 | The :mod:`subprocess` module allows you to spawn new processes, connect to their |
| 15 | input/output/error pipes, and obtain their return codes. This module intends to |
Benjamin Peterson | 5eea8a7 | 2014-03-12 21:41:35 -0500 | [diff] [blame] | 16 | replace several older modules and functions:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 17 | |
| 18 | os.system |
| 19 | os.spawn* |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 20 | |
| 21 | Information about how the :mod:`subprocess` module can be used to replace these |
| 22 | modules and functions can be found in the following sections. |
| 23 | |
Benjamin Peterson | 4118174 | 2008-07-02 20:22:54 +0000 | [diff] [blame] | 24 | .. seealso:: |
| 25 | |
| 26 | :pep:`324` -- PEP proposing the subprocess module |
| 27 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 28 | |
Ezio Melotti | 402f75d | 2012-11-08 10:07:10 +0200 | [diff] [blame] | 29 | Using the :mod:`subprocess` Module |
| 30 | ---------------------------------- |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 31 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 32 | The recommended approach to invoking subprocesses is to use the :func:`run` |
Benjamin Peterson | ef9ffcb | 2015-04-14 22:12:14 -0400 | [diff] [blame] | 33 | function for all use cases it can handle. For more advanced use cases, the |
| 34 | underlying :class:`Popen` interface can be used directly. |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 35 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 36 | The :func:`run` function was added in Python 3.5; if you need to retain |
| 37 | compatibility with older versions, see the :ref:`call-function-trio` section. |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 38 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 39 | |
| 40 | .. function:: run(args, *, stdin=None, input=None, stdout=None, stderr=None,\ |
Steve Dower | 050acae | 2016-09-06 20:16:17 -0700 | [diff] [blame] | 41 | shell=False, timeout=None, check=False, \ |
| 42 | encoding=None, errors=None) |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 43 | |
| 44 | Run the command described by *args*. Wait for command to complete, then |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 45 | return a :class:`CompletedProcess` instance. |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 46 | |
| 47 | The arguments shown above are merely the most common ones, described below |
Nick Coghlan | 217f05b | 2011-11-08 22:11:21 +1000 | [diff] [blame] | 48 | in :ref:`frequently-used-arguments` (hence the use of keyword-only notation |
| 49 | in the abbreviated signature). The full function signature is largely the |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 50 | same as that of the :class:`Popen` constructor - apart from *timeout*, |
| 51 | *input* and *check*, all the arguments to this function are passed through to |
| 52 | that interface. |
Nick Coghlan | 217f05b | 2011-11-08 22:11:21 +1000 | [diff] [blame] | 53 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 54 | This does not capture stdout or stderr by default. To do so, pass |
| 55 | :data:`PIPE` for the *stdout* and/or *stderr* arguments. |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 56 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 57 | The *timeout* argument is passed to :meth:`Popen.communicate`. If the timeout |
| 58 | expires, the child process will be killed and waited for. The |
Nick Coghlan | 217f05b | 2011-11-08 22:11:21 +1000 | [diff] [blame] | 59 | :exc:`TimeoutExpired` exception will be re-raised after the child process |
| 60 | has terminated. |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 61 | |
Serhiy Storchaka | fcd9f22 | 2013-04-22 20:20:54 +0300 | [diff] [blame] | 62 | The *input* argument is passed to :meth:`Popen.communicate` and thus to the |
| 63 | subprocess's stdin. If used it must be a byte sequence, or a string if |
Serhiy Storchaka | 7d6dda4 | 2016-10-19 18:36:51 +0300 | [diff] [blame] | 64 | *encoding* or *errors* is specified or *universal_newlines* is true. When |
Steve Dower | 050acae | 2016-09-06 20:16:17 -0700 | [diff] [blame] | 65 | used, the internal :class:`Popen` object is automatically created with |
| 66 | ``stdin=PIPE``, and the *stdin* argument may not be used as well. |
Serhiy Storchaka | fcd9f22 | 2013-04-22 20:20:54 +0300 | [diff] [blame] | 67 | |
Serhiy Storchaka | 4adf01c | 2016-10-19 18:30:05 +0300 | [diff] [blame] | 68 | If *check* is true, and the process exits with a non-zero exit code, a |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 69 | :exc:`CalledProcessError` exception will be raised. Attributes of that |
| 70 | exception hold the arguments, the exit code, and stdout and stderr if they |
| 71 | were captured. |
| 72 | |
Serhiy Storchaka | 7d6dda4 | 2016-10-19 18:36:51 +0300 | [diff] [blame] | 73 | If *encoding* or *errors* are specified, or *universal_newlines* is true, |
Steve Dower | 050acae | 2016-09-06 20:16:17 -0700 | [diff] [blame] | 74 | file objects for stdin, stdout and stderr are opened in text mode using the |
| 75 | specified *encoding* and *errors* or the :class:`io.TextIOWrapper` default. |
| 76 | Otherwise, file objects are opened in binary mode. |
| 77 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 78 | Examples:: |
| 79 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 80 | >>> subprocess.run(["ls", "-l"]) # doesn't capture output |
| 81 | CompletedProcess(args=['ls', '-l'], returncode=0) |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 82 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 83 | >>> subprocess.run("exit 1", shell=True, check=True) |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 84 | Traceback (most recent call last): |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 85 | ... |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 86 | subprocess.CalledProcessError: Command 'exit 1' returned non-zero exit status 1 |
| 87 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 88 | >>> subprocess.run(["ls", "-l", "/dev/null"], stdout=subprocess.PIPE) |
| 89 | CompletedProcess(args=['ls', '-l', '/dev/null'], returncode=0, |
| 90 | stdout=b'crw-rw-rw- 1 root root 1, 3 Jan 23 16:23 /dev/null\n') |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 91 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 92 | .. versionadded:: 3.5 |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 93 | |
Steve Dower | 050acae | 2016-09-06 20:16:17 -0700 | [diff] [blame] | 94 | .. versionchanged:: 3.6 |
| 95 | |
| 96 | Added *encoding* and *errors* parameters |
| 97 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 98 | .. class:: CompletedProcess |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 99 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 100 | The return value from :func:`run`, representing a process that has finished. |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 101 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 102 | .. attribute:: args |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 103 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 104 | The arguments used to launch the process. This may be a list or a string. |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 105 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 106 | .. attribute:: returncode |
Serhiy Storchaka | fcd9f22 | 2013-04-22 20:20:54 +0300 | [diff] [blame] | 107 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 108 | Exit status of the child process. Typically, an exit status of 0 indicates |
| 109 | that it ran successfully. |
Nick Coghlan | 217f05b | 2011-11-08 22:11:21 +1000 | [diff] [blame] | 110 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 111 | A negative value ``-N`` indicates that the child was terminated by signal |
| 112 | ``N`` (POSIX only). |
| 113 | |
| 114 | .. attribute:: stdout |
| 115 | |
| 116 | Captured stdout from the child process. A bytes sequence, or a string if |
Serhiy Storchaka | 989db5c | 2016-10-19 16:37:13 +0300 | [diff] [blame] | 117 | :func:`run` was called with an encoding or errors. ``None`` if stdout was not |
Steve Dower | 050acae | 2016-09-06 20:16:17 -0700 | [diff] [blame] | 118 | captured. |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 119 | |
| 120 | If you ran the process with ``stderr=subprocess.STDOUT``, stdout and |
| 121 | stderr will be combined in this attribute, and :attr:`stderr` will be |
Serhiy Storchaka | ecf41da | 2016-10-19 16:29:26 +0300 | [diff] [blame] | 122 | ``None``. |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 123 | |
| 124 | .. attribute:: stderr |
| 125 | |
| 126 | Captured stderr from the child process. A bytes sequence, or a string if |
Serhiy Storchaka | 989db5c | 2016-10-19 16:37:13 +0300 | [diff] [blame] | 127 | :func:`run` was called with an encoding or errors. ``None`` if stderr was not |
Steve Dower | 050acae | 2016-09-06 20:16:17 -0700 | [diff] [blame] | 128 | captured. |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 129 | |
| 130 | .. method:: check_returncode() |
| 131 | |
| 132 | If :attr:`returncode` is non-zero, raise a :exc:`CalledProcessError`. |
| 133 | |
| 134 | .. versionadded:: 3.5 |
Nick Coghlan | 217f05b | 2011-11-08 22:11:21 +1000 | [diff] [blame] | 135 | |
| 136 | .. data:: DEVNULL |
| 137 | |
| 138 | Special value that can be used as the *stdin*, *stdout* or *stderr* argument |
| 139 | to :class:`Popen` and indicates that the special file :data:`os.devnull` |
| 140 | will be used. |
| 141 | |
| 142 | .. versionadded:: 3.3 |
| 143 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 144 | |
| 145 | .. data:: PIPE |
| 146 | |
| 147 | Special value that can be used as the *stdin*, *stdout* or *stderr* argument |
| 148 | to :class:`Popen` and indicates that a pipe to the standard stream should be |
Gregory P. Smith | 6436cba | 2014-05-11 13:26:21 -0700 | [diff] [blame] | 149 | opened. Most useful with :meth:`Popen.communicate`. |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 150 | |
| 151 | |
| 152 | .. data:: STDOUT |
| 153 | |
| 154 | Special value that can be used as the *stderr* argument to :class:`Popen` and |
| 155 | indicates that standard error should go into the same handle as standard |
| 156 | output. |
| 157 | |
| 158 | |
Andrew Svetlov | b4a09ab | 2012-08-09 15:11:45 +0300 | [diff] [blame] | 159 | .. exception:: SubprocessError |
| 160 | |
| 161 | Base class for all other exceptions from this module. |
| 162 | |
| 163 | .. versionadded:: 3.3 |
| 164 | |
| 165 | |
| 166 | .. exception:: TimeoutExpired |
| 167 | |
| 168 | Subclass of :exc:`SubprocessError`, raised when a timeout expires |
| 169 | while waiting for a child process. |
| 170 | |
| 171 | .. attribute:: cmd |
| 172 | |
| 173 | Command that was used to spawn the child process. |
| 174 | |
| 175 | .. attribute:: timeout |
| 176 | |
| 177 | Timeout in seconds. |
| 178 | |
| 179 | .. attribute:: output |
| 180 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 181 | Output of the child process if it was captured by :func:`run` or |
Andrew Svetlov | b4a09ab | 2012-08-09 15:11:45 +0300 | [diff] [blame] | 182 | :func:`check_output`. Otherwise, ``None``. |
| 183 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 184 | .. attribute:: stdout |
| 185 | |
| 186 | Alias for output, for symmetry with :attr:`stderr`. |
| 187 | |
| 188 | .. attribute:: stderr |
| 189 | |
| 190 | Stderr output of the child process if it was captured by :func:`run`. |
| 191 | Otherwise, ``None``. |
| 192 | |
Andrew Svetlov | b4a09ab | 2012-08-09 15:11:45 +0300 | [diff] [blame] | 193 | .. versionadded:: 3.3 |
| 194 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 195 | .. versionchanged:: 3.5 |
| 196 | *stdout* and *stderr* attributes added |
Andrew Svetlov | b4a09ab | 2012-08-09 15:11:45 +0300 | [diff] [blame] | 197 | |
| 198 | .. exception:: CalledProcessError |
| 199 | |
| 200 | Subclass of :exc:`SubprocessError`, raised when a process run by |
| 201 | :func:`check_call` or :func:`check_output` returns a non-zero exit status. |
| 202 | |
| 203 | .. attribute:: returncode |
| 204 | |
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | 583a1d6 | 2016-06-03 00:31:21 +0000 | [diff] [blame] | 205 | Exit status of the child process. If the process exited due to a |
| 206 | signal, this will be the negative signal number. |
Andrew Svetlov | b4a09ab | 2012-08-09 15:11:45 +0300 | [diff] [blame] | 207 | |
| 208 | .. attribute:: cmd |
| 209 | |
| 210 | Command that was used to spawn the child process. |
| 211 | |
| 212 | .. attribute:: output |
| 213 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 214 | Output of the child process if it was captured by :func:`run` or |
Andrew Svetlov | b4a09ab | 2012-08-09 15:11:45 +0300 | [diff] [blame] | 215 | :func:`check_output`. Otherwise, ``None``. |
| 216 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 217 | .. attribute:: stdout |
| 218 | |
| 219 | Alias for output, for symmetry with :attr:`stderr`. |
| 220 | |
| 221 | .. attribute:: stderr |
| 222 | |
| 223 | Stderr output of the child process if it was captured by :func:`run`. |
| 224 | Otherwise, ``None``. |
| 225 | |
| 226 | .. versionchanged:: 3.5 |
| 227 | *stdout* and *stderr* attributes added |
Andrew Svetlov | b4a09ab | 2012-08-09 15:11:45 +0300 | [diff] [blame] | 228 | |
| 229 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 230 | .. _frequently-used-arguments: |
| 231 | |
| 232 | Frequently Used Arguments |
| 233 | ^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 234 | |
| 235 | To support a wide variety of use cases, the :class:`Popen` constructor (and |
| 236 | the convenience functions) accept a large number of optional arguments. For |
| 237 | most typical use cases, many of these arguments can be safely left at their |
| 238 | default values. The arguments that are most commonly needed are: |
| 239 | |
| 240 | *args* is required for all calls and should be a string, or a sequence of |
| 241 | program arguments. Providing a sequence of arguments is generally |
| 242 | preferred, as it allows the module to take care of any required escaping |
| 243 | and quoting of arguments (e.g. to permit spaces in file names). If passing |
| 244 | a single string, either *shell* must be :const:`True` (see below) or else |
| 245 | the string must simply name the program to be executed without specifying |
| 246 | any arguments. |
| 247 | |
| 248 | *stdin*, *stdout* and *stderr* specify the executed program's standard input, |
| 249 | standard output and standard error file handles, respectively. Valid values |
Nick Coghlan | 217f05b | 2011-11-08 22:11:21 +1000 | [diff] [blame] | 250 | are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive |
| 251 | integer), an existing file object, and ``None``. :data:`PIPE` indicates |
| 252 | that a new pipe to the child should be created. :data:`DEVNULL` indicates |
| 253 | that the special file :data:`os.devnull` will be used. With the default |
| 254 | settings of ``None``, no redirection will occur; the child's file handles |
| 255 | will be inherited from the parent. Additionally, *stderr* can be |
| 256 | :data:`STDOUT`, which indicates that the stderr data from the child |
| 257 | process should be captured into the same file handle as for *stdout*. |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 258 | |
R David Murray | 1b00f25 | 2012-08-15 10:43:58 -0400 | [diff] [blame] | 259 | .. index:: |
| 260 | single: universal newlines; subprocess module |
| 261 | |
Serhiy Storchaka | 7d6dda4 | 2016-10-19 18:36:51 +0300 | [diff] [blame] | 262 | If *encoding* or *errors* are specified, or *universal_newlines* is true, |
Steve Dower | 050acae | 2016-09-06 20:16:17 -0700 | [diff] [blame] | 263 | the file objects *stdin*, *stdout* and *stderr* will be opened in text |
| 264 | mode using the *encoding* and *errors* specified in the call or the |
| 265 | defaults for :class:`io.TextIOWrapper`. |
Ronald Oussoren | 385521c | 2013-07-07 09:26:45 +0200 | [diff] [blame] | 266 | |
Steve Dower | 050acae | 2016-09-06 20:16:17 -0700 | [diff] [blame] | 267 | For *stdin*, line ending characters ``'\n'`` in the input will be converted |
| 268 | to the default line separator :data:`os.linesep`. For *stdout* and *stderr*, |
| 269 | all line endings in the output will be converted to ``'\n'``. For more |
| 270 | information see the documentation of the :class:`io.TextIOWrapper` class |
| 271 | when the *newline* argument to its constructor is ``None``. |
| 272 | |
| 273 | If text mode is not used, *stdin*, *stdout* and *stderr* will be opened as |
| 274 | binary streams. No encoding or line ending conversion is performed. |
| 275 | |
| 276 | .. versionadded:: 3.6 |
| 277 | Added *encoding* and *errors* parameters. |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 278 | |
Andrew Svetlov | 50be452 | 2012-08-13 22:09:04 +0300 | [diff] [blame] | 279 | .. note:: |
| 280 | |
Gregory P. Smith | 1f8a40b | 2013-03-20 18:32:03 -0700 | [diff] [blame] | 281 | The newlines attribute of the file objects :attr:`Popen.stdin`, |
| 282 | :attr:`Popen.stdout` and :attr:`Popen.stderr` are not updated by |
| 283 | the :meth:`Popen.communicate` method. |
Andrew Svetlov | 50be452 | 2012-08-13 22:09:04 +0300 | [diff] [blame] | 284 | |
| 285 | If *shell* is ``True``, the specified command will be executed through |
Ezio Melotti | 186d523 | 2012-09-15 08:34:08 +0300 | [diff] [blame] | 286 | the shell. This can be useful if you are using Python primarily for the |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 287 | enhanced control flow it offers over most system shells and still want |
Ezio Melotti | 186d523 | 2012-09-15 08:34:08 +0300 | [diff] [blame] | 288 | convenient access to other shell features such as shell pipes, filename |
| 289 | wildcards, environment variable expansion, and expansion of ``~`` to a |
| 290 | user's home directory. However, note that Python itself offers |
| 291 | implementations of many shell-like features (in particular, :mod:`glob`, |
| 292 | :mod:`fnmatch`, :func:`os.walk`, :func:`os.path.expandvars`, |
| 293 | :func:`os.path.expanduser`, and :mod:`shutil`). |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 294 | |
Andrew Svetlov | 4805fa8 | 2012-08-13 22:11:14 +0300 | [diff] [blame] | 295 | .. versionchanged:: 3.3 |
| 296 | When *universal_newlines* is ``True``, the class uses the encoding |
| 297 | :func:`locale.getpreferredencoding(False) <locale.getpreferredencoding>` |
| 298 | instead of ``locale.getpreferredencoding()``. See the |
| 299 | :class:`io.TextIOWrapper` class for more information on this change. |
| 300 | |
Gregory P. Smith | 6436cba | 2014-05-11 13:26:21 -0700 | [diff] [blame] | 301 | .. note:: |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 302 | |
Gregory P. Smith | 6436cba | 2014-05-11 13:26:21 -0700 | [diff] [blame] | 303 | Read the `Security Considerations`_ section before using ``shell=True``. |
Andrew Svetlov | c2415eb | 2012-10-28 11:42:26 +0200 | [diff] [blame] | 304 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 305 | These options, along with all of the other options, are described in more |
| 306 | detail in the :class:`Popen` constructor documentation. |
| 307 | |
| 308 | |
Sandro Tosi | 1526ad1 | 2011-12-25 11:27:37 +0100 | [diff] [blame] | 309 | Popen Constructor |
Sandro Tosi | 3e6c814 | 2011-12-25 17:14:11 +0100 | [diff] [blame] | 310 | ^^^^^^^^^^^^^^^^^ |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 311 | |
| 312 | The underlying process creation and management in this module is handled by |
| 313 | the :class:`Popen` class. It offers a lot of flexibility so that developers |
| 314 | are able to handle the less common cases not covered by the convenience |
| 315 | functions. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 316 | |
| 317 | |
Gregory P. Smith | a1ed539 | 2013-03-23 11:44:25 -0700 | [diff] [blame] | 318 | .. class:: Popen(args, bufsize=-1, executable=None, stdin=None, stdout=None, \ |
Chris Jerdonek | 4a4a02b | 2012-10-10 17:46:18 -0700 | [diff] [blame] | 319 | stderr=None, preexec_fn=None, close_fds=True, shell=False, \ |
| 320 | cwd=None, env=None, universal_newlines=False, \ |
| 321 | startupinfo=None, creationflags=0, restore_signals=True, \ |
Steve Dower | 050acae | 2016-09-06 20:16:17 -0700 | [diff] [blame] | 322 | start_new_session=False, pass_fds=(), *, \ |
| 323 | encoding=None, errors=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 324 | |
Gregory P. Smith | 8e0aa05 | 2014-05-11 13:28:35 -0700 | [diff] [blame] | 325 | Execute a child program in a new process. On POSIX, the class uses |
Chris Jerdonek | 4a4a02b | 2012-10-10 17:46:18 -0700 | [diff] [blame] | 326 | :meth:`os.execvp`-like behavior to execute the child program. On Windows, |
| 327 | the class uses the Windows ``CreateProcess()`` function. The arguments to |
| 328 | :class:`Popen` are as follows. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 329 | |
Chris Jerdonek | 470ee39 | 2012-10-08 23:06:57 -0700 | [diff] [blame] | 330 | *args* should be a sequence of program arguments or else a single string. |
| 331 | By default, the program to execute is the first item in *args* if *args* is |
Chris Jerdonek | 4a4a02b | 2012-10-10 17:46:18 -0700 | [diff] [blame] | 332 | a sequence. If *args* is a string, the interpretation is |
| 333 | platform-dependent and described below. See the *shell* and *executable* |
| 334 | arguments for additional differences from the default behavior. Unless |
| 335 | otherwise stated, it is recommended to pass *args* as a sequence. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 336 | |
Gregory P. Smith | 8e0aa05 | 2014-05-11 13:28:35 -0700 | [diff] [blame] | 337 | On POSIX, if *args* is a string, the string is interpreted as the name or |
Chris Jerdonek | 4a4a02b | 2012-10-10 17:46:18 -0700 | [diff] [blame] | 338 | path of the program to execute. However, this can only be done if not |
| 339 | passing arguments to the program. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 340 | |
R. David Murray | 5973e4d | 2010-02-04 16:41:57 +0000 | [diff] [blame] | 341 | .. note:: |
| 342 | |
| 343 | :meth:`shlex.split` can be useful when determining the correct |
| 344 | tokenization for *args*, especially in complex cases:: |
| 345 | |
| 346 | >>> import shlex, subprocess |
R. David Murray | 73bc75b | 2010-02-05 16:25:12 +0000 | [diff] [blame] | 347 | >>> command_line = input() |
R. David Murray | 5973e4d | 2010-02-04 16:41:57 +0000 | [diff] [blame] | 348 | /bin/vikings -input eggs.txt -output "spam spam.txt" -cmd "echo '$MONEY'" |
| 349 | >>> args = shlex.split(command_line) |
| 350 | >>> print(args) |
| 351 | ['/bin/vikings', '-input', 'eggs.txt', '-output', 'spam spam.txt', '-cmd', "echo '$MONEY'"] |
| 352 | >>> p = subprocess.Popen(args) # Success! |
| 353 | |
| 354 | Note in particular that options (such as *-input*) and arguments (such |
| 355 | as *eggs.txt*) that are separated by whitespace in the shell go in separate |
| 356 | list elements, while arguments that need quoting or backslash escaping when |
| 357 | used in the shell (such as filenames containing spaces or the *echo* command |
| 358 | shown above) are single list elements. |
| 359 | |
Chris Jerdonek | 4a4a02b | 2012-10-10 17:46:18 -0700 | [diff] [blame] | 360 | On Windows, if *args* is a sequence, it will be converted to a string in a |
| 361 | manner described in :ref:`converting-argument-sequence`. This is because |
| 362 | the underlying ``CreateProcess()`` operates on strings. |
Chris Jerdonek | 470ee39 | 2012-10-08 23:06:57 -0700 | [diff] [blame] | 363 | |
Serhiy Storchaka | a97cd2e | 2016-10-19 16:43:42 +0300 | [diff] [blame] | 364 | The *shell* argument (which defaults to ``False``) specifies whether to use |
| 365 | the shell as the program to execute. If *shell* is ``True``, it is |
Chris Jerdonek | 4a4a02b | 2012-10-10 17:46:18 -0700 | [diff] [blame] | 366 | recommended to pass *args* as a string rather than as a sequence. |
Chris Jerdonek | 470ee39 | 2012-10-08 23:06:57 -0700 | [diff] [blame] | 367 | |
Gregory P. Smith | 8e0aa05 | 2014-05-11 13:28:35 -0700 | [diff] [blame] | 368 | On POSIX with ``shell=True``, the shell defaults to :file:`/bin/sh`. If |
Chris Jerdonek | 470ee39 | 2012-10-08 23:06:57 -0700 | [diff] [blame] | 369 | *args* is a string, the string specifies the command |
| 370 | to execute through the shell. This means that the string must be |
R. David Murray | 5973e4d | 2010-02-04 16:41:57 +0000 | [diff] [blame] | 371 | formatted exactly as it would be when typed at the shell prompt. This |
| 372 | includes, for example, quoting or backslash escaping filenames with spaces in |
| 373 | them. If *args* is a sequence, the first item specifies the command string, and |
| 374 | any additional items will be treated as additional arguments to the shell |
Chris Jerdonek | 470ee39 | 2012-10-08 23:06:57 -0700 | [diff] [blame] | 375 | itself. That is to say, :class:`Popen` does the equivalent of:: |
R. David Murray | 5973e4d | 2010-02-04 16:41:57 +0000 | [diff] [blame] | 376 | |
| 377 | Popen(['/bin/sh', '-c', args[0], args[1], ...]) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 378 | |
Chris Jerdonek | 470ee39 | 2012-10-08 23:06:57 -0700 | [diff] [blame] | 379 | On Windows with ``shell=True``, the :envvar:`COMSPEC` environment variable |
| 380 | specifies the default shell. The only time you need to specify |
| 381 | ``shell=True`` on Windows is when the command you wish to execute is built |
| 382 | into the shell (e.g. :command:`dir` or :command:`copy`). You do not need |
| 383 | ``shell=True`` to run a batch file or console-based executable. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 384 | |
Gregory P. Smith | 6436cba | 2014-05-11 13:26:21 -0700 | [diff] [blame] | 385 | .. note:: |
Chris Jerdonek | cc32a68 | 2012-10-10 22:52:22 -0700 | [diff] [blame] | 386 | |
Gregory P. Smith | 6436cba | 2014-05-11 13:26:21 -0700 | [diff] [blame] | 387 | Read the `Security Considerations`_ section before using ``shell=True``. |
Chris Jerdonek | cc32a68 | 2012-10-10 22:52:22 -0700 | [diff] [blame] | 388 | |
Antoine Pitrou | afe8d06 | 2014-09-21 21:10:56 +0200 | [diff] [blame] | 389 | *bufsize* will be supplied as the corresponding argument to the |
| 390 | :func:`open` function when creating the stdin/stdout/stderr pipe |
| 391 | file objects: |
| 392 | |
| 393 | - :const:`0` means unbuffered (read and write are one |
| 394 | system call and can return short) |
| 395 | - :const:`1` means line buffered |
| 396 | (only usable if ``universal_newlines=True`` i.e., in a text mode) |
| 397 | - any other positive value means use a buffer of approximately that |
| 398 | size |
| 399 | - negative bufsize (the default) means the system default of |
| 400 | io.DEFAULT_BUFFER_SIZE will be used. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 401 | |
Georg Brandl | 37b70bb | 2013-11-25 08:48:37 +0100 | [diff] [blame] | 402 | .. versionchanged:: 3.3.1 |
Gregory P. Smith | a1ed539 | 2013-03-23 11:44:25 -0700 | [diff] [blame] | 403 | *bufsize* now defaults to -1 to enable buffering by default to match the |
Georg Brandl | 37b70bb | 2013-11-25 08:48:37 +0100 | [diff] [blame] | 404 | behavior that most code expects. In versions prior to Python 3.2.4 and |
| 405 | 3.3.1 it incorrectly defaulted to :const:`0` which was unbuffered |
| 406 | and allowed short reads. This was unintentional and did not match the |
| 407 | behavior of Python 2 as most code expected. |
Antoine Pitrou | 4b87620 | 2010-06-02 17:10:49 +0000 | [diff] [blame] | 408 | |
Chris Jerdonek | 470ee39 | 2012-10-08 23:06:57 -0700 | [diff] [blame] | 409 | The *executable* argument specifies a replacement program to execute. It |
| 410 | is very seldom needed. When ``shell=False``, *executable* replaces the |
Chris Jerdonek | 4a4a02b | 2012-10-10 17:46:18 -0700 | [diff] [blame] | 411 | program to execute specified by *args*. However, the original *args* is |
| 412 | still passed to the program. Most programs treat the program specified |
| 413 | by *args* as the command name, which can then be different from the program |
Gregory P. Smith | 8e0aa05 | 2014-05-11 13:28:35 -0700 | [diff] [blame] | 414 | actually executed. On POSIX, the *args* name |
Chris Jerdonek | 470ee39 | 2012-10-08 23:06:57 -0700 | [diff] [blame] | 415 | becomes the display name for the executable in utilities such as |
Gregory P. Smith | 8e0aa05 | 2014-05-11 13:28:35 -0700 | [diff] [blame] | 416 | :program:`ps`. If ``shell=True``, on POSIX the *executable* argument |
Chris Jerdonek | 470ee39 | 2012-10-08 23:06:57 -0700 | [diff] [blame] | 417 | specifies a replacement shell for the default :file:`/bin/sh`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 418 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 419 | *stdin*, *stdout* and *stderr* specify the executed program's standard input, |
Georg Brandl | af265f4 | 2008-12-07 15:06:20 +0000 | [diff] [blame] | 420 | standard output and standard error file handles, respectively. Valid values |
Ross Lagerwall | ba102ec | 2011-03-16 18:40:25 +0200 | [diff] [blame] | 421 | are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive |
| 422 | integer), an existing :term:`file object`, and ``None``. :data:`PIPE` |
| 423 | indicates that a new pipe to the child should be created. :data:`DEVNULL` |
Nick Coghlan | 217f05b | 2011-11-08 22:11:21 +1000 | [diff] [blame] | 424 | indicates that the special file :data:`os.devnull` will be used. With the |
| 425 | default settings of ``None``, no redirection will occur; the child's file |
| 426 | handles will be inherited from the parent. Additionally, *stderr* can be |
| 427 | :data:`STDOUT`, which indicates that the stderr data from the applications |
| 428 | should be captured into the same file handle as for stdout. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 429 | |
| 430 | If *preexec_fn* is set to a callable object, this object will be called in the |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 431 | child process just before the child is executed. |
Gregory P. Smith | 8e0aa05 | 2014-05-11 13:28:35 -0700 | [diff] [blame] | 432 | (POSIX only) |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 433 | |
| 434 | .. warning:: |
| 435 | |
| 436 | The *preexec_fn* parameter is not safe to use in the presence of threads |
| 437 | in your application. The child process could deadlock before exec is |
| 438 | called. |
| 439 | If you must use it, keep it trivial! Minimize the number of libraries |
| 440 | you call into. |
| 441 | |
| 442 | .. note:: |
| 443 | |
| 444 | If you need to modify the environment for the child use the *env* |
| 445 | parameter rather than doing it in a *preexec_fn*. |
| 446 | The *start_new_session* parameter can take the place of a previously |
| 447 | common use of *preexec_fn* to call os.setsid() in the child. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 448 | |
| 449 | If *close_fds* is true, all file descriptors except :const:`0`, :const:`1` and |
Gregory P. Smith | 8e0aa05 | 2014-05-11 13:28:35 -0700 | [diff] [blame] | 450 | :const:`2` will be closed before the child process is executed. (POSIX only). |
| 451 | The default varies by platform: Always true on POSIX. On Windows it is |
Gregory P. Smith | 8edd99d | 2010-12-14 13:43:30 +0000 | [diff] [blame] | 452 | true when *stdin*/*stdout*/*stderr* are :const:`None`, false otherwise. |
Gregory P. Smith | d23047b | 2010-12-04 09:10:44 +0000 | [diff] [blame] | 453 | On Windows, if *close_fds* is true then no handles will be inherited by the |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 454 | child process. Note that on Windows, you cannot set *close_fds* to true and |
| 455 | also redirect the standard handles by setting *stdin*, *stdout* or *stderr*. |
| 456 | |
Gregory P. Smith | 8edd99d | 2010-12-14 13:43:30 +0000 | [diff] [blame] | 457 | .. versionchanged:: 3.2 |
| 458 | The default for *close_fds* was changed from :const:`False` to |
| 459 | what is described above. |
| 460 | |
| 461 | *pass_fds* is an optional sequence of file descriptors to keep open |
| 462 | between the parent and child. Providing any *pass_fds* forces |
Gregory P. Smith | 8e0aa05 | 2014-05-11 13:28:35 -0700 | [diff] [blame] | 463 | *close_fds* to be :const:`True`. (POSIX only) |
Gregory P. Smith | 8edd99d | 2010-12-14 13:43:30 +0000 | [diff] [blame] | 464 | |
| 465 | .. versionadded:: 3.2 |
| 466 | The *pass_fds* parameter was added. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 467 | |
Chris Jerdonek | ec3ea94 | 2012-09-30 00:10:28 -0700 | [diff] [blame] | 468 | If *cwd* is not ``None``, the function changes the working directory to |
| 469 | *cwd* before executing the child. In particular, the function looks for |
| 470 | *executable* (or for the first item in *args*) relative to *cwd* if the |
| 471 | executable path is a relative path. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 472 | |
Serhiy Storchaka | fbc1c26 | 2013-11-29 12:17:13 +0200 | [diff] [blame] | 473 | If *restore_signals* is true (the default) all signals that Python has set to |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 474 | SIG_IGN are restored to SIG_DFL in the child process before the exec. |
| 475 | Currently this includes the SIGPIPE, SIGXFZ and SIGXFSZ signals. |
Gregory P. Smith | 8e0aa05 | 2014-05-11 13:28:35 -0700 | [diff] [blame] | 476 | (POSIX only) |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 477 | |
| 478 | .. versionchanged:: 3.2 |
| 479 | *restore_signals* was added. |
| 480 | |
Serhiy Storchaka | fbc1c26 | 2013-11-29 12:17:13 +0200 | [diff] [blame] | 481 | If *start_new_session* is true the setsid() system call will be made in the |
Gregory P. Smith | 8e0aa05 | 2014-05-11 13:28:35 -0700 | [diff] [blame] | 482 | child process prior to the execution of the subprocess. (POSIX only) |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 483 | |
| 484 | .. versionchanged:: 3.2 |
| 485 | *start_new_session* was added. |
| 486 | |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 487 | If *env* is not ``None``, it must be a mapping that defines the environment |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 488 | variables for the new process; these are used instead of the default |
| 489 | behavior of inheriting the current process' environment. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 490 | |
R. David Murray | 1055e89 | 2009-04-16 18:15:32 +0000 | [diff] [blame] | 491 | .. note:: |
R. David Murray | f4ac149 | 2009-04-15 22:35:15 +0000 | [diff] [blame] | 492 | |
Georg Brandl | 2708f3a | 2009-12-20 14:38:23 +0000 | [diff] [blame] | 493 | If specified, *env* must provide any variables required for the program to |
| 494 | execute. On Windows, in order to run a `side-by-side assembly`_ the |
| 495 | specified *env* **must** include a valid :envvar:`SystemRoot`. |
R. David Murray | f4ac149 | 2009-04-15 22:35:15 +0000 | [diff] [blame] | 496 | |
Georg Brandl | 5d94134 | 2016-02-26 19:37:12 +0100 | [diff] [blame] | 497 | .. _side-by-side assembly: https://en.wikipedia.org/wiki/Side-by-Side_Assembly |
R. David Murray | 1055e89 | 2009-04-16 18:15:32 +0000 | [diff] [blame] | 498 | |
Steve Dower | 050acae | 2016-09-06 20:16:17 -0700 | [diff] [blame] | 499 | If *encoding* or *errors* are specified, the file objects *stdin*, *stdout* |
| 500 | and *stderr* are opened in text mode with the specified encoding and |
| 501 | *errors*, as described above in :ref:`frequently-used-arguments`. If |
| 502 | *universal_newlines* is ``True``, they are opened in text mode with default |
| 503 | encoding. Otherwise, they are opened as binary streams. |
| 504 | |
| 505 | .. versionadded:: 3.6 |
| 506 | *encoding* and *errors* were added. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 507 | |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 508 | If given, *startupinfo* will be a :class:`STARTUPINFO` object, which is |
| 509 | passed to the underlying ``CreateProcess`` function. |
Brian Curtin | 3040193 | 2011-04-29 22:20:57 -0500 | [diff] [blame] | 510 | *creationflags*, if given, can be :data:`CREATE_NEW_CONSOLE` or |
| 511 | :data:`CREATE_NEW_PROCESS_GROUP`. (Windows only) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 512 | |
Gregory P. Smith | 6b65745 | 2011-05-11 21:42:08 -0700 | [diff] [blame] | 513 | Popen objects are supported as context managers via the :keyword:`with` statement: |
| 514 | on exit, standard file descriptors are closed, and the process is waited for. |
Brian Curtin | 79cdb66 | 2010-12-03 02:46:02 +0000 | [diff] [blame] | 515 | :: |
| 516 | |
| 517 | with Popen(["ifconfig"], stdout=PIPE) as proc: |
| 518 | log.write(proc.stdout.read()) |
| 519 | |
| 520 | .. versionchanged:: 3.2 |
| 521 | Added context manager support. |
| 522 | |
Victor Stinner | 5a48e21 | 2016-05-20 12:11:15 +0200 | [diff] [blame] | 523 | .. versionchanged:: 3.6 |
| 524 | Popen destructor now emits a :exc:`ResourceWarning` warning if the child |
| 525 | process is still running. |
| 526 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 527 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 528 | Exceptions |
| 529 | ^^^^^^^^^^ |
| 530 | |
| 531 | Exceptions raised in the child process, before the new program has started to |
| 532 | execute, will be re-raised in the parent. Additionally, the exception object |
| 533 | will have one extra attribute called :attr:`child_traceback`, which is a string |
Georg Brandl | 8167561 | 2010-08-26 14:30:56 +0000 | [diff] [blame] | 534 | containing traceback information from the child's point of view. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 535 | |
| 536 | The most common exception raised is :exc:`OSError`. This occurs, for example, |
| 537 | when trying to execute a non-existent file. Applications should prepare for |
| 538 | :exc:`OSError` exceptions. |
| 539 | |
| 540 | A :exc:`ValueError` will be raised if :class:`Popen` is called with invalid |
| 541 | arguments. |
| 542 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 543 | :func:`check_call` and :func:`check_output` will raise |
| 544 | :exc:`CalledProcessError` if the called process returns a non-zero return |
| 545 | code. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 546 | |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 547 | All of the functions and methods that accept a *timeout* parameter, such as |
| 548 | :func:`call` and :meth:`Popen.communicate` will raise :exc:`TimeoutExpired` if |
| 549 | the timeout expires before the process exits. |
| 550 | |
Ronald Oussoren | c157790 | 2011-03-16 10:03:10 -0400 | [diff] [blame] | 551 | Exceptions defined in this module all inherit from :exc:`SubprocessError`. |
Gregory P. Smith | 54d412e | 2011-03-14 14:08:43 -0400 | [diff] [blame] | 552 | |
| 553 | .. versionadded:: 3.3 |
| 554 | The :exc:`SubprocessError` base class was added. |
| 555 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 556 | |
Gregory P. Smith | 6436cba | 2014-05-11 13:26:21 -0700 | [diff] [blame] | 557 | Security Considerations |
| 558 | ----------------------- |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 559 | |
Gregory P. Smith | 6436cba | 2014-05-11 13:26:21 -0700 | [diff] [blame] | 560 | Unlike some other popen functions, this implementation will never |
| 561 | implicitly call a system shell. This means that all characters, |
| 562 | including shell metacharacters, can safely be passed to child processes. |
| 563 | If the shell is invoked explicitly, via ``shell=True``, it is the application's |
| 564 | responsibility to ensure that all whitespace and metacharacters are |
| 565 | quoted appropriately to avoid |
Georg Brandl | 5d94134 | 2016-02-26 19:37:12 +0100 | [diff] [blame] | 566 | `shell injection <https://en.wikipedia.org/wiki/Shell_injection#Shell_injection>`_ |
Gregory P. Smith | 6436cba | 2014-05-11 13:26:21 -0700 | [diff] [blame] | 567 | vulnerabilities. |
| 568 | |
| 569 | When using ``shell=True``, the :func:`shlex.quote` function can be |
| 570 | used to properly escape whitespace and shell metacharacters in strings |
| 571 | that are going to be used to construct shell commands. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 572 | |
| 573 | |
| 574 | Popen Objects |
| 575 | ------------- |
| 576 | |
| 577 | Instances of the :class:`Popen` class have the following methods: |
| 578 | |
| 579 | |
| 580 | .. method:: Popen.poll() |
| 581 | |
Serhiy Storchaka | 9e0ae53 | 2013-08-24 00:23:38 +0300 | [diff] [blame] | 582 | Check if child process has terminated. Set and return |
| 583 | :attr:`~Popen.returncode` attribute. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 584 | |
| 585 | |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 586 | .. method:: Popen.wait(timeout=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 587 | |
Serhiy Storchaka | 9e0ae53 | 2013-08-24 00:23:38 +0300 | [diff] [blame] | 588 | Wait for child process to terminate. Set and return |
| 589 | :attr:`~Popen.returncode` attribute. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 590 | |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 591 | If the process does not terminate after *timeout* seconds, raise a |
| 592 | :exc:`TimeoutExpired` exception. It is safe to catch this exception and |
| 593 | retry the wait. |
| 594 | |
Victor Stinner | 0717124 | 2014-02-24 13:18:47 +0100 | [diff] [blame] | 595 | .. note:: |
| 596 | |
Gregory P. Smith | 6436cba | 2014-05-11 13:26:21 -0700 | [diff] [blame] | 597 | This will deadlock when using ``stdout=PIPE`` or ``stderr=PIPE`` |
| 598 | and the child process generates enough output to a pipe such that |
| 599 | it blocks waiting for the OS pipe buffer to accept more data. |
| 600 | Use :meth:`Popen.communicate` when using pipes to avoid that. |
| 601 | |
| 602 | .. note:: |
| 603 | |
Victor Stinner | 0717124 | 2014-02-24 13:18:47 +0100 | [diff] [blame] | 604 | The function is implemented using a busy loop (non-blocking call and |
| 605 | short sleeps). Use the :mod:`asyncio` module for an asynchronous wait: |
| 606 | see :class:`asyncio.create_subprocess_exec`. |
| 607 | |
Reid Kleckner | 28f1303 | 2011-03-14 12:36:53 -0400 | [diff] [blame] | 608 | .. versionchanged:: 3.3 |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 609 | *timeout* was added. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 610 | |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 611 | .. method:: Popen.communicate(input=None, timeout=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 612 | |
| 613 | Interact with process: Send data to stdin. Read data from stdout and stderr, |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 614 | until end-of-file is reached. Wait for process to terminate. The optional |
Gregory P. Smith | a454ef6 | 2011-05-22 22:29:49 -0700 | [diff] [blame] | 615 | *input* argument should be data to be sent to the child process, or |
Steve Dower | 050acae | 2016-09-06 20:16:17 -0700 | [diff] [blame] | 616 | ``None``, if no data should be sent to the child. If streams were opened in |
| 617 | text mode, *input* must be a string. Otherwise, it must be bytes. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 618 | |
Victor Stinner | 3989205 | 2014-10-14 00:52:07 +0200 | [diff] [blame] | 619 | :meth:`communicate` returns a tuple ``(stdout_data, stderr_data)``. |
Steve Dower | 050acae | 2016-09-06 20:16:17 -0700 | [diff] [blame] | 620 | The data will be strings if streams were opened in text mode; otherwise, |
| 621 | bytes. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 622 | |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 623 | Note that if you want to send data to the process's stdin, you need to create |
| 624 | the Popen object with ``stdin=PIPE``. Similarly, to get anything other than |
| 625 | ``None`` in the result tuple, you need to give ``stdout=PIPE`` and/or |
| 626 | ``stderr=PIPE`` too. |
| 627 | |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 628 | If the process does not terminate after *timeout* seconds, a |
| 629 | :exc:`TimeoutExpired` exception will be raised. Catching this exception and |
| 630 | retrying communication will not lose any output. |
| 631 | |
| 632 | The child process is not killed if the timeout expires, so in order to |
| 633 | cleanup properly a well-behaved application should kill the child process and |
| 634 | finish communication:: |
| 635 | |
| 636 | proc = subprocess.Popen(...) |
| 637 | try: |
| 638 | outs, errs = proc.communicate(timeout=15) |
| 639 | except TimeoutExpired: |
| 640 | proc.kill() |
| 641 | outs, errs = proc.communicate() |
| 642 | |
Christian Heimes | 7f04431 | 2008-01-06 17:05:40 +0000 | [diff] [blame] | 643 | .. note:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 644 | |
Christian Heimes | 7f04431 | 2008-01-06 17:05:40 +0000 | [diff] [blame] | 645 | The data read is buffered in memory, so do not use this method if the data |
| 646 | size is large or unlimited. |
| 647 | |
Reid Kleckner | 28f1303 | 2011-03-14 12:36:53 -0400 | [diff] [blame] | 648 | .. versionchanged:: 3.3 |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 649 | *timeout* was added. |
| 650 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 651 | |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 652 | .. method:: Popen.send_signal(signal) |
| 653 | |
| 654 | Sends the signal *signal* to the child. |
| 655 | |
| 656 | .. note:: |
| 657 | |
Brian Curtin | eb24d74 | 2010-04-12 17:16:38 +0000 | [diff] [blame] | 658 | On Windows, SIGTERM is an alias for :meth:`terminate`. CTRL_C_EVENT and |
Senthil Kumaran | 916bd38 | 2010-10-15 12:55:19 +0000 | [diff] [blame] | 659 | CTRL_BREAK_EVENT can be sent to processes started with a *creationflags* |
Brian Curtin | eb24d74 | 2010-04-12 17:16:38 +0000 | [diff] [blame] | 660 | parameter which includes `CREATE_NEW_PROCESS_GROUP`. |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 661 | |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 662 | |
| 663 | .. method:: Popen.terminate() |
| 664 | |
| 665 | Stop the child. On Posix OSs the method sends SIGTERM to the |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 666 | child. On Windows the Win32 API function :c:func:`TerminateProcess` is called |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 667 | to stop the child. |
| 668 | |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 669 | |
| 670 | .. method:: Popen.kill() |
| 671 | |
| 672 | Kills the child. On Posix OSs the function sends SIGKILL to the child. |
| 673 | On Windows :meth:`kill` is an alias for :meth:`terminate`. |
| 674 | |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 675 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 676 | The following attributes are also available: |
| 677 | |
Gregory P. Smith | 024c5ee | 2014-04-29 11:33:23 -0700 | [diff] [blame] | 678 | .. attribute:: Popen.args |
| 679 | |
| 680 | The *args* argument as it was passed to :class:`Popen` -- a |
| 681 | sequence of program arguments or else a single string. |
| 682 | |
| 683 | .. versionadded:: 3.3 |
Georg Brandl | 734e268 | 2008-08-12 08:18:18 +0000 | [diff] [blame] | 684 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 685 | .. attribute:: Popen.stdin |
| 686 | |
Benjamin Peterson | 3d8814e | 2014-01-18 00:45:56 -0500 | [diff] [blame] | 687 | If the *stdin* argument was :data:`PIPE`, this attribute is a writeable |
Steve Dower | 050acae | 2016-09-06 20:16:17 -0700 | [diff] [blame] | 688 | stream object as returned by :func:`open`. If the *encoding* or *errors* |
| 689 | arguments were specified or the *universal_newlines* argument was ``True``, |
| 690 | the stream is a text stream, otherwise it is a byte stream. If the *stdin* |
| 691 | argument was not :data:`PIPE`, this attribute is ``None``. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 692 | |
| 693 | |
| 694 | .. attribute:: Popen.stdout |
| 695 | |
Benjamin Peterson | 3d8814e | 2014-01-18 00:45:56 -0500 | [diff] [blame] | 696 | If the *stdout* argument was :data:`PIPE`, this attribute is a readable |
| 697 | stream object as returned by :func:`open`. Reading from the stream provides |
Steve Dower | 050acae | 2016-09-06 20:16:17 -0700 | [diff] [blame] | 698 | output from the child process. If the *encoding* or *errors* arguments were |
| 699 | specified or the *universal_newlines* argument was ``True``, the stream is a |
| 700 | text stream, otherwise it is a byte stream. If the *stdout* argument was not |
| 701 | :data:`PIPE`, this attribute is ``None``. |
Benjamin Peterson | af69fe2 | 2014-01-18 00:49:04 -0500 | [diff] [blame] | 702 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 703 | |
| 704 | .. attribute:: Popen.stderr |
| 705 | |
Benjamin Peterson | 3d8814e | 2014-01-18 00:45:56 -0500 | [diff] [blame] | 706 | If the *stderr* argument was :data:`PIPE`, this attribute is a readable |
| 707 | stream object as returned by :func:`open`. Reading from the stream provides |
Steve Dower | 050acae | 2016-09-06 20:16:17 -0700 | [diff] [blame] | 708 | error output from the child process. If the *encoding* or *errors* arguments |
| 709 | were specified or the *universal_newlines* argument was ``True``, the stream |
| 710 | is a text stream, otherwise it is a byte stream. If the *stderr* argument was |
| 711 | not :data:`PIPE`, this attribute is ``None``. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 712 | |
Gregory P. Smith | 6436cba | 2014-05-11 13:26:21 -0700 | [diff] [blame] | 713 | .. warning:: |
| 714 | |
| 715 | Use :meth:`~Popen.communicate` rather than :attr:`.stdin.write <Popen.stdin>`, |
| 716 | :attr:`.stdout.read <Popen.stdout>` or :attr:`.stderr.read <Popen.stderr>` to avoid |
| 717 | deadlocks due to any of the other OS pipe buffers filling up and blocking the |
| 718 | child process. |
| 719 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 720 | |
| 721 | .. attribute:: Popen.pid |
| 722 | |
| 723 | The process ID of the child process. |
| 724 | |
Georg Brandl | 58bfdca | 2010-03-21 09:50:49 +0000 | [diff] [blame] | 725 | Note that if you set the *shell* argument to ``True``, this is the process ID |
| 726 | of the spawned shell. |
| 727 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 728 | |
| 729 | .. attribute:: Popen.returncode |
| 730 | |
Christian Heimes | 7f04431 | 2008-01-06 17:05:40 +0000 | [diff] [blame] | 731 | The child return code, set by :meth:`poll` and :meth:`wait` (and indirectly |
| 732 | by :meth:`communicate`). A ``None`` value indicates that the process |
| 733 | hasn't terminated yet. |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 734 | |
Christian Heimes | 7f04431 | 2008-01-06 17:05:40 +0000 | [diff] [blame] | 735 | A negative value ``-N`` indicates that the child was terminated by signal |
Gregory P. Smith | 8e0aa05 | 2014-05-11 13:28:35 -0700 | [diff] [blame] | 736 | ``N`` (POSIX only). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 737 | |
| 738 | |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 739 | Windows Popen Helpers |
| 740 | --------------------- |
| 741 | |
| 742 | The :class:`STARTUPINFO` class and following constants are only available |
| 743 | on Windows. |
| 744 | |
| 745 | .. class:: STARTUPINFO() |
Brian Curtin | 73365dd | 2011-04-29 22:18:33 -0500 | [diff] [blame] | 746 | |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 747 | Partial support of the Windows |
Georg Brandl | 5d94134 | 2016-02-26 19:37:12 +0100 | [diff] [blame] | 748 | `STARTUPINFO <https://msdn.microsoft.com/en-us/library/ms686331(v=vs.85).aspx>`__ |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 749 | structure is used for :class:`Popen` creation. |
| 750 | |
| 751 | .. attribute:: dwFlags |
| 752 | |
Senthil Kumaran | a6bac95 | 2011-07-04 11:28:30 -0700 | [diff] [blame] | 753 | A bit field that determines whether certain :class:`STARTUPINFO` |
| 754 | attributes are used when the process creates a window. :: |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 755 | |
| 756 | si = subprocess.STARTUPINFO() |
| 757 | si.dwFlags = subprocess.STARTF_USESTDHANDLES | subprocess.STARTF_USESHOWWINDOW |
| 758 | |
| 759 | .. attribute:: hStdInput |
| 760 | |
Senthil Kumaran | a6bac95 | 2011-07-04 11:28:30 -0700 | [diff] [blame] | 761 | If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute |
| 762 | is the standard input handle for the process. If |
| 763 | :data:`STARTF_USESTDHANDLES` is not specified, the default for standard |
| 764 | input is the keyboard buffer. |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 765 | |
| 766 | .. attribute:: hStdOutput |
| 767 | |
Senthil Kumaran | a6bac95 | 2011-07-04 11:28:30 -0700 | [diff] [blame] | 768 | If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute |
| 769 | is the standard output handle for the process. Otherwise, this attribute |
| 770 | is ignored and the default for standard output is the console window's |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 771 | buffer. |
| 772 | |
| 773 | .. attribute:: hStdError |
| 774 | |
Senthil Kumaran | a6bac95 | 2011-07-04 11:28:30 -0700 | [diff] [blame] | 775 | If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute |
| 776 | is the standard error handle for the process. Otherwise, this attribute is |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 777 | ignored and the default for standard error is the console window's buffer. |
| 778 | |
| 779 | .. attribute:: wShowWindow |
| 780 | |
Senthil Kumaran | a6bac95 | 2011-07-04 11:28:30 -0700 | [diff] [blame] | 781 | If :attr:`dwFlags` specifies :data:`STARTF_USESHOWWINDOW`, this attribute |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 782 | can be any of the values that can be specified in the ``nCmdShow`` |
| 783 | parameter for the |
Georg Brandl | 5d94134 | 2016-02-26 19:37:12 +0100 | [diff] [blame] | 784 | `ShowWindow <https://msdn.microsoft.com/en-us/library/ms633548(v=vs.85).aspx>`__ |
Senthil Kumaran | a6bac95 | 2011-07-04 11:28:30 -0700 | [diff] [blame] | 785 | function, except for ``SW_SHOWDEFAULT``. Otherwise, this attribute is |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 786 | ignored. |
Brian Curtin | 73365dd | 2011-04-29 22:18:33 -0500 | [diff] [blame] | 787 | |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 788 | :data:`SW_HIDE` is provided for this attribute. It is used when |
| 789 | :class:`Popen` is called with ``shell=True``. |
| 790 | |
| 791 | |
| 792 | Constants |
| 793 | ^^^^^^^^^ |
| 794 | |
| 795 | The :mod:`subprocess` module exposes the following constants. |
| 796 | |
| 797 | .. data:: STD_INPUT_HANDLE |
| 798 | |
| 799 | The standard input device. Initially, this is the console input buffer, |
| 800 | ``CONIN$``. |
| 801 | |
| 802 | .. data:: STD_OUTPUT_HANDLE |
| 803 | |
| 804 | The standard output device. Initially, this is the active console screen |
| 805 | buffer, ``CONOUT$``. |
| 806 | |
| 807 | .. data:: STD_ERROR_HANDLE |
| 808 | |
| 809 | The standard error device. Initially, this is the active console screen |
| 810 | buffer, ``CONOUT$``. |
| 811 | |
| 812 | .. data:: SW_HIDE |
| 813 | |
| 814 | Hides the window. Another window will be activated. |
| 815 | |
| 816 | .. data:: STARTF_USESTDHANDLES |
| 817 | |
| 818 | Specifies that the :attr:`STARTUPINFO.hStdInput`, |
Senthil Kumaran | a6bac95 | 2011-07-04 11:28:30 -0700 | [diff] [blame] | 819 | :attr:`STARTUPINFO.hStdOutput`, and :attr:`STARTUPINFO.hStdError` attributes |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 820 | contain additional information. |
| 821 | |
| 822 | .. data:: STARTF_USESHOWWINDOW |
| 823 | |
Senthil Kumaran | a6bac95 | 2011-07-04 11:28:30 -0700 | [diff] [blame] | 824 | Specifies that the :attr:`STARTUPINFO.wShowWindow` attribute contains |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 825 | additional information. |
| 826 | |
| 827 | .. data:: CREATE_NEW_CONSOLE |
| 828 | |
| 829 | The new process has a new console, instead of inheriting its parent's |
| 830 | console (the default). |
Brian Curtin | 73365dd | 2011-04-29 22:18:33 -0500 | [diff] [blame] | 831 | |
Brian Curtin | 3040193 | 2011-04-29 22:20:57 -0500 | [diff] [blame] | 832 | .. data:: CREATE_NEW_PROCESS_GROUP |
| 833 | |
| 834 | A :class:`Popen` ``creationflags`` parameter to specify that a new process |
| 835 | group will be created. This flag is necessary for using :func:`os.kill` |
| 836 | on the subprocess. |
| 837 | |
| 838 | This flag is ignored if :data:`CREATE_NEW_CONSOLE` is specified. |
| 839 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 840 | .. _call-function-trio: |
| 841 | |
| 842 | Older high-level API |
| 843 | -------------------- |
| 844 | |
| 845 | Prior to Python 3.5, these three functions comprised the high level API to |
| 846 | subprocess. You can now use :func:`run` in many cases, but lots of existing code |
| 847 | calls these functions. |
| 848 | |
| 849 | .. function:: call(args, *, stdin=None, stdout=None, stderr=None, shell=False, timeout=None) |
| 850 | |
| 851 | Run the command described by *args*. Wait for command to complete, then |
Berker Peksag | bf1d4b6 | 2015-07-25 14:27:07 +0300 | [diff] [blame] | 852 | return the :attr:`~Popen.returncode` attribute. |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 853 | |
| 854 | This is equivalent to:: |
| 855 | |
| 856 | run(...).returncode |
| 857 | |
| 858 | (except that the *input* and *check* parameters are not supported) |
| 859 | |
Berker Peksag | bf1d4b6 | 2015-07-25 14:27:07 +0300 | [diff] [blame] | 860 | The arguments shown above are merely the most |
| 861 | common ones. The full function signature is largely the |
| 862 | same as that of the :class:`Popen` constructor - this function passes all |
| 863 | supplied arguments other than *timeout* directly through to that interface. |
| 864 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 865 | .. note:: |
| 866 | |
| 867 | Do not use ``stdout=PIPE`` or ``stderr=PIPE`` with this |
| 868 | function. The child process will block if it generates enough |
| 869 | output to a pipe to fill up the OS pipe buffer as the pipes are |
| 870 | not being read from. |
| 871 | |
| 872 | .. versionchanged:: 3.3 |
| 873 | *timeout* was added. |
| 874 | |
| 875 | .. function:: check_call(args, *, stdin=None, stdout=None, stderr=None, shell=False, timeout=None) |
| 876 | |
| 877 | Run command with arguments. Wait for command to complete. If the return |
| 878 | code was zero then return, otherwise raise :exc:`CalledProcessError`. The |
| 879 | :exc:`CalledProcessError` object will have the return code in the |
| 880 | :attr:`~CalledProcessError.returncode` attribute. |
| 881 | |
| 882 | This is equivalent to:: |
| 883 | |
| 884 | run(..., check=True) |
| 885 | |
| 886 | (except that the *input* parameter is not supported) |
| 887 | |
Berker Peksag | bf1d4b6 | 2015-07-25 14:27:07 +0300 | [diff] [blame] | 888 | The arguments shown above are merely the most |
| 889 | common ones. The full function signature is largely the |
| 890 | same as that of the :class:`Popen` constructor - this function passes all |
| 891 | supplied arguments other than *timeout* directly through to that interface. |
| 892 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 893 | .. note:: |
| 894 | |
| 895 | Do not use ``stdout=PIPE`` or ``stderr=PIPE`` with this |
| 896 | function. The child process will block if it generates enough |
| 897 | output to a pipe to fill up the OS pipe buffer as the pipes are |
| 898 | not being read from. |
| 899 | |
| 900 | .. versionchanged:: 3.3 |
| 901 | *timeout* was added. |
| 902 | |
| 903 | |
Steve Dower | 050acae | 2016-09-06 20:16:17 -0700 | [diff] [blame] | 904 | .. function:: check_output(args, *, stdin=None, stderr=None, shell=False, \ |
| 905 | encoding=None, errors=None, \ |
| 906 | universal_newlines=False, timeout=None) |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 907 | |
| 908 | Run command with arguments and return its output. |
| 909 | |
| 910 | If the return code was non-zero it raises a :exc:`CalledProcessError`. The |
| 911 | :exc:`CalledProcessError` object will have the return code in the |
| 912 | :attr:`~CalledProcessError.returncode` attribute and any output in the |
| 913 | :attr:`~CalledProcessError.output` attribute. |
| 914 | |
| 915 | This is equivalent to:: |
| 916 | |
| 917 | run(..., check=True, stdout=PIPE).stdout |
| 918 | |
Berker Peksag | bf1d4b6 | 2015-07-25 14:27:07 +0300 | [diff] [blame] | 919 | The arguments shown above are merely the most common ones. |
| 920 | The full function signature is largely the same as that of :func:`run` - |
| 921 | most arguments are passed directly through to that interface. |
| 922 | However, explicitly passing ``input=None`` to inherit the parent's |
| 923 | standard input file handle is not supported. |
| 924 | |
Gregory P. Smith | 6e73000 | 2015-04-14 16:14:25 -0700 | [diff] [blame] | 925 | By default, this function will return the data as encoded bytes. The actual |
| 926 | encoding of the output data may depend on the command being invoked, so the |
| 927 | decoding to text will often need to be handled at the application level. |
| 928 | |
| 929 | This behaviour may be overridden by setting *universal_newlines* to |
| 930 | ``True`` as described above in :ref:`frequently-used-arguments`. |
| 931 | |
| 932 | To also capture standard error in the result, use |
| 933 | ``stderr=subprocess.STDOUT``:: |
| 934 | |
| 935 | >>> subprocess.check_output( |
| 936 | ... "ls non_existent_file; exit 0", |
| 937 | ... stderr=subprocess.STDOUT, |
| 938 | ... shell=True) |
| 939 | 'ls: non_existent_file: No such file or directory\n' |
| 940 | |
| 941 | .. versionadded:: 3.1 |
| 942 | |
| 943 | .. versionchanged:: 3.3 |
| 944 | *timeout* was added. |
| 945 | |
| 946 | .. versionchanged:: 3.4 |
Berker Peksag | bf1d4b6 | 2015-07-25 14:27:07 +0300 | [diff] [blame] | 947 | Support for the *input* keyword argument was added. |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 948 | |
Benjamin Peterson | dcf97b9 | 2008-07-02 17:30:14 +0000 | [diff] [blame] | 949 | .. _subprocess-replacements: |
| 950 | |
Ezio Melotti | 402f75d | 2012-11-08 10:07:10 +0200 | [diff] [blame] | 951 | Replacing Older Functions with the :mod:`subprocess` Module |
| 952 | ----------------------------------------------------------- |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 953 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 954 | In this section, "a becomes b" means that b can be used as a replacement for a. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 955 | |
| 956 | .. note:: |
| 957 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 958 | All "a" functions in this section fail (more or less) silently if the |
| 959 | executed program cannot be found; the "b" replacements raise :exc:`OSError` |
| 960 | instead. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 961 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 962 | In addition, the replacements using :func:`check_output` will fail with a |
| 963 | :exc:`CalledProcessError` if the requested operation produces a non-zero |
Serhiy Storchaka | 9e0ae53 | 2013-08-24 00:23:38 +0300 | [diff] [blame] | 964 | return code. The output is still available as the |
| 965 | :attr:`~CalledProcessError.output` attribute of the raised exception. |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 966 | |
| 967 | In the following examples, we assume that the relevant functions have already |
Ezio Melotti | 402f75d | 2012-11-08 10:07:10 +0200 | [diff] [blame] | 968 | been imported from the :mod:`subprocess` module. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 969 | |
| 970 | |
| 971 | Replacing /bin/sh shell backquote |
| 972 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 973 | |
Martin Panter | 1050d2d | 2016-07-26 11:18:21 +0200 | [diff] [blame] | 974 | .. code-block:: bash |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 975 | |
| 976 | output=`mycmd myarg` |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 977 | |
Martin Panter | 1050d2d | 2016-07-26 11:18:21 +0200 | [diff] [blame] | 978 | becomes:: |
| 979 | |
| 980 | output = check_output(["mycmd", "myarg"]) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 981 | |
Benjamin Peterson | f10a79a | 2008-10-11 00:49:57 +0000 | [diff] [blame] | 982 | Replacing shell pipeline |
| 983 | ^^^^^^^^^^^^^^^^^^^^^^^^ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 984 | |
Martin Panter | 1050d2d | 2016-07-26 11:18:21 +0200 | [diff] [blame] | 985 | .. code-block:: bash |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 986 | |
| 987 | output=`dmesg | grep hda` |
Martin Panter | 1050d2d | 2016-07-26 11:18:21 +0200 | [diff] [blame] | 988 | |
| 989 | becomes:: |
| 990 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 991 | p1 = Popen(["dmesg"], stdout=PIPE) |
| 992 | p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE) |
Gregory P. Smith | e09d2f1 | 2011-02-05 21:47:25 +0000 | [diff] [blame] | 993 | p1.stdout.close() # Allow p1 to receive a SIGPIPE if p2 exits. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 994 | output = p2.communicate()[0] |
| 995 | |
Gregory P. Smith | e09d2f1 | 2011-02-05 21:47:25 +0000 | [diff] [blame] | 996 | The p1.stdout.close() call after starting the p2 is important in order for p1 |
| 997 | to receive a SIGPIPE if p2 exits before p1. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 998 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 999 | Alternatively, for trusted input, the shell's own pipeline support may still |
Martin Panter | 1050d2d | 2016-07-26 11:18:21 +0200 | [diff] [blame] | 1000 | be used directly: |
| 1001 | |
| 1002 | .. code-block:: bash |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 1003 | |
| 1004 | output=`dmesg | grep hda` |
Martin Panter | 1050d2d | 2016-07-26 11:18:21 +0200 | [diff] [blame] | 1005 | |
| 1006 | becomes:: |
| 1007 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 1008 | output=check_output("dmesg | grep hda", shell=True) |
| 1009 | |
| 1010 | |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 1011 | Replacing :func:`os.system` |
| 1012 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1013 | |
| 1014 | :: |
| 1015 | |
| 1016 | sts = os.system("mycmd" + " myarg") |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 1017 | # becomes |
| 1018 | sts = call("mycmd" + " myarg", shell=True) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1019 | |
| 1020 | Notes: |
| 1021 | |
| 1022 | * Calling the program through the shell is usually not required. |
| 1023 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1024 | A more realistic example would look like this:: |
| 1025 | |
| 1026 | try: |
| 1027 | retcode = call("mycmd" + " myarg", shell=True) |
| 1028 | if retcode < 0: |
Collin Winter | c79461b | 2007-09-01 23:34:30 +0000 | [diff] [blame] | 1029 | print("Child was terminated by signal", -retcode, file=sys.stderr) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1030 | else: |
Collin Winter | c79461b | 2007-09-01 23:34:30 +0000 | [diff] [blame] | 1031 | print("Child returned", retcode, file=sys.stderr) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1032 | except OSError as e: |
Collin Winter | c79461b | 2007-09-01 23:34:30 +0000 | [diff] [blame] | 1033 | print("Execution failed:", e, file=sys.stderr) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1034 | |
| 1035 | |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 1036 | Replacing the :func:`os.spawn <os.spawnl>` family |
| 1037 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1038 | |
| 1039 | P_NOWAIT example:: |
| 1040 | |
| 1041 | pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg") |
| 1042 | ==> |
| 1043 | pid = Popen(["/bin/mycmd", "myarg"]).pid |
| 1044 | |
| 1045 | P_WAIT example:: |
| 1046 | |
| 1047 | retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg") |
| 1048 | ==> |
| 1049 | retcode = call(["/bin/mycmd", "myarg"]) |
| 1050 | |
| 1051 | Vector example:: |
| 1052 | |
| 1053 | os.spawnvp(os.P_NOWAIT, path, args) |
| 1054 | ==> |
| 1055 | Popen([path] + args[1:]) |
| 1056 | |
| 1057 | Environment example:: |
| 1058 | |
| 1059 | os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env) |
| 1060 | ==> |
| 1061 | Popen(["/bin/mycmd", "myarg"], env={"PATH": "/usr/bin"}) |
| 1062 | |
| 1063 | |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 1064 | |
| 1065 | Replacing :func:`os.popen`, :func:`os.popen2`, :func:`os.popen3` |
| 1066 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1067 | |
| 1068 | :: |
| 1069 | |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 1070 | (child_stdin, child_stdout) = os.popen2(cmd, mode, bufsize) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1071 | ==> |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 1072 | p = Popen(cmd, shell=True, bufsize=bufsize, |
| 1073 | stdin=PIPE, stdout=PIPE, close_fds=True) |
| 1074 | (child_stdin, child_stdout) = (p.stdin, p.stdout) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1075 | |
| 1076 | :: |
| 1077 | |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 1078 | (child_stdin, |
| 1079 | child_stdout, |
| 1080 | child_stderr) = os.popen3(cmd, mode, bufsize) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1081 | ==> |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 1082 | p = Popen(cmd, shell=True, bufsize=bufsize, |
| 1083 | stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True) |
| 1084 | (child_stdin, |
| 1085 | child_stdout, |
| 1086 | child_stderr) = (p.stdin, p.stdout, p.stderr) |
| 1087 | |
| 1088 | :: |
| 1089 | |
| 1090 | (child_stdin, child_stdout_and_stderr) = os.popen4(cmd, mode, bufsize) |
| 1091 | ==> |
| 1092 | p = Popen(cmd, shell=True, bufsize=bufsize, |
| 1093 | stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True) |
| 1094 | (child_stdin, child_stdout_and_stderr) = (p.stdin, p.stdout) |
| 1095 | |
| 1096 | Return code handling translates as follows:: |
| 1097 | |
| 1098 | pipe = os.popen(cmd, 'w') |
| 1099 | ... |
| 1100 | rc = pipe.close() |
Stefan Krah | fc9e08d | 2010-07-14 10:16:11 +0000 | [diff] [blame] | 1101 | if rc is not None and rc >> 8: |
Ezio Melotti | 985e24d | 2009-09-13 07:54:02 +0000 | [diff] [blame] | 1102 | print("There were some errors") |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 1103 | ==> |
R David Murray | 17227a7 | 2015-09-04 10:01:19 -0400 | [diff] [blame] | 1104 | process = Popen(cmd, stdin=PIPE) |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 1105 | ... |
| 1106 | process.stdin.close() |
| 1107 | if process.wait() != 0: |
Ezio Melotti | 985e24d | 2009-09-13 07:54:02 +0000 | [diff] [blame] | 1108 | print("There were some errors") |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 1109 | |
| 1110 | |
| 1111 | Replacing functions from the :mod:`popen2` module |
| 1112 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 1113 | |
| 1114 | .. note:: |
| 1115 | |
| 1116 | If the cmd argument to popen2 functions is a string, the command is executed |
| 1117 | through /bin/sh. If it is a list, the command is directly executed. |
| 1118 | |
| 1119 | :: |
| 1120 | |
| 1121 | (child_stdout, child_stdin) = popen2.popen2("somestring", bufsize, mode) |
| 1122 | ==> |
R David Murray | ae9d193 | 2014-05-14 10:09:52 -0400 | [diff] [blame] | 1123 | p = Popen("somestring", shell=True, bufsize=bufsize, |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 1124 | stdin=PIPE, stdout=PIPE, close_fds=True) |
| 1125 | (child_stdout, child_stdin) = (p.stdout, p.stdin) |
| 1126 | |
| 1127 | :: |
| 1128 | |
| 1129 | (child_stdout, child_stdin) = popen2.popen2(["mycmd", "myarg"], bufsize, mode) |
| 1130 | ==> |
| 1131 | p = Popen(["mycmd", "myarg"], bufsize=bufsize, |
| 1132 | stdin=PIPE, stdout=PIPE, close_fds=True) |
| 1133 | (child_stdout, child_stdin) = (p.stdout, p.stdin) |
| 1134 | |
| 1135 | :class:`popen2.Popen3` and :class:`popen2.Popen4` basically work as |
| 1136 | :class:`subprocess.Popen`, except that: |
| 1137 | |
| 1138 | * :class:`Popen` raises an exception if the execution fails. |
| 1139 | |
| 1140 | * the *capturestderr* argument is replaced with the *stderr* argument. |
| 1141 | |
| 1142 | * ``stdin=PIPE`` and ``stdout=PIPE`` must be specified. |
| 1143 | |
| 1144 | * popen2 closes all file descriptors by default, but you have to specify |
Gregory P. Smith | f560485 | 2010-12-13 06:45:02 +0000 | [diff] [blame] | 1145 | ``close_fds=True`` with :class:`Popen` to guarantee this behavior on |
| 1146 | all platforms or past Python versions. |
Eli Bendersky | 046a764 | 2011-04-15 07:23:26 +0300 | [diff] [blame] | 1147 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 1148 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 1149 | Legacy Shell Invocation Functions |
Nick Coghlan | 32e4a58 | 2011-11-08 21:50:58 +1000 | [diff] [blame] | 1150 | --------------------------------- |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 1151 | |
| 1152 | This module also provides the following legacy functions from the 2.x |
| 1153 | ``commands`` module. These operations implicitly invoke the system shell and |
| 1154 | none of the guarantees described above regarding security and exception |
| 1155 | handling consistency are valid for these functions. |
| 1156 | |
| 1157 | .. function:: getstatusoutput(cmd) |
| 1158 | |
| 1159 | Return ``(status, output)`` of executing *cmd* in a shell. |
| 1160 | |
Tim Golden | 6079814 | 2013-11-05 12:57:25 +0000 | [diff] [blame] | 1161 | Execute the string *cmd* in a shell with :meth:`Popen.check_output` and |
Steve Dower | 050acae | 2016-09-06 20:16:17 -0700 | [diff] [blame] | 1162 | return a 2-tuple ``(status, output)``. The locale encoding is used; |
Tim Golden | 6079814 | 2013-11-05 12:57:25 +0000 | [diff] [blame] | 1163 | see the notes on :ref:`frequently-used-arguments` for more details. |
Tim Golden | 3a2abb5 | 2013-11-03 18:24:50 +0000 | [diff] [blame] | 1164 | |
| 1165 | A trailing newline is stripped from the output. |
| 1166 | The exit status for the command can be interpreted |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 1167 | according to the rules for the C function :c:func:`wait`. Example:: |
| 1168 | |
| 1169 | >>> subprocess.getstatusoutput('ls /bin/ls') |
| 1170 | (0, '/bin/ls') |
| 1171 | >>> subprocess.getstatusoutput('cat /bin/junk') |
| 1172 | (256, 'cat: /bin/junk: No such file or directory') |
| 1173 | >>> subprocess.getstatusoutput('/bin/junk') |
| 1174 | (256, 'sh: /bin/junk: not found') |
| 1175 | |
Gregory P. Smith | 8e0aa05 | 2014-05-11 13:28:35 -0700 | [diff] [blame] | 1176 | Availability: POSIX & Windows |
R David Murray | 95b696a | 2014-03-07 20:04:17 -0500 | [diff] [blame] | 1177 | |
| 1178 | .. versionchanged:: 3.3.4 |
| 1179 | Windows support added |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 1180 | |
| 1181 | |
| 1182 | .. function:: getoutput(cmd) |
| 1183 | |
| 1184 | Return output (stdout and stderr) of executing *cmd* in a shell. |
| 1185 | |
| 1186 | Like :func:`getstatusoutput`, except the exit status is ignored and the return |
| 1187 | value is a string containing the command's output. Example:: |
| 1188 | |
| 1189 | >>> subprocess.getoutput('ls /bin/ls') |
| 1190 | '/bin/ls' |
| 1191 | |
Gregory P. Smith | 8e0aa05 | 2014-05-11 13:28:35 -0700 | [diff] [blame] | 1192 | Availability: POSIX & Windows |
R David Murray | 95b696a | 2014-03-07 20:04:17 -0500 | [diff] [blame] | 1193 | |
| 1194 | .. versionchanged:: 3.3.4 |
| 1195 | Windows support added |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 1196 | |
Nick Coghlan | 32e4a58 | 2011-11-08 21:50:58 +1000 | [diff] [blame] | 1197 | |
Eli Bendersky | 046a764 | 2011-04-15 07:23:26 +0300 | [diff] [blame] | 1198 | Notes |
| 1199 | ----- |
| 1200 | |
| 1201 | .. _converting-argument-sequence: |
| 1202 | |
| 1203 | Converting an argument sequence to a string on Windows |
| 1204 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 1205 | |
| 1206 | On Windows, an *args* sequence is converted to a string that can be parsed |
| 1207 | using the following rules (which correspond to the rules used by the MS C |
| 1208 | runtime): |
| 1209 | |
| 1210 | 1. Arguments are delimited by white space, which is either a |
| 1211 | space or a tab. |
| 1212 | |
| 1213 | 2. A string surrounded by double quotation marks is |
| 1214 | interpreted as a single argument, regardless of white space |
| 1215 | contained within. A quoted string can be embedded in an |
| 1216 | argument. |
| 1217 | |
| 1218 | 3. A double quotation mark preceded by a backslash is |
| 1219 | interpreted as a literal double quotation mark. |
| 1220 | |
| 1221 | 4. Backslashes are interpreted literally, unless they |
| 1222 | immediately precede a double quotation mark. |
| 1223 | |
| 1224 | 5. If backslashes immediately precede a double quotation mark, |
| 1225 | every pair of backslashes is interpreted as a literal |
| 1226 | backslash. If the number of backslashes is odd, the last |
| 1227 | backslash escapes the next double quotation mark as |
| 1228 | described in rule 3. |
| 1229 | |
Eli Bendersky | d211231 | 2011-04-15 07:26:28 +0300 | [diff] [blame] | 1230 | |
Éric Araujo | 9bce311 | 2011-07-27 18:29:31 +0200 | [diff] [blame] | 1231 | .. seealso:: |
| 1232 | |
| 1233 | :mod:`shlex` |
| 1234 | Module which provides function to parse and escape command lines. |