blob: a2c184a04608887a0e8afbcb97b3bc5c23b62d59 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`subprocess` --- Subprocess management
2===========================================
3
4.. module:: subprocess
5 :synopsis: Subprocess management.
Terry Jan Reedyfa089b92016-06-11 15:02:54 -04006
Georg Brandl116aa622007-08-15 14:28:22 +00007.. moduleauthor:: Peter Åstrand <astrand@lysator.liu.se>
8.. sectionauthor:: Peter Åstrand <astrand@lysator.liu.se>
9
Terry Jan Reedyfa089b92016-06-11 15:02:54 -040010**Source code:** :source:`Lib/subprocess.py`
11
12--------------
Georg Brandl116aa622007-08-15 14:28:22 +000013
Georg Brandl116aa622007-08-15 14:28:22 +000014The :mod:`subprocess` module allows you to spawn new processes, connect to their
15input/output/error pipes, and obtain their return codes. This module intends to
Benjamin Peterson5eea8a72014-03-12 21:41:35 -050016replace several older modules and functions::
Georg Brandl116aa622007-08-15 14:28:22 +000017
18 os.system
19 os.spawn*
Georg Brandl116aa622007-08-15 14:28:22 +000020
21Information about how the :mod:`subprocess` module can be used to replace these
22modules and functions can be found in the following sections.
23
Benjamin Peterson41181742008-07-02 20:22:54 +000024.. seealso::
25
26 :pep:`324` -- PEP proposing the subprocess module
27
Georg Brandl116aa622007-08-15 14:28:22 +000028
Ezio Melotti402f75d2012-11-08 10:07:10 +020029Using the :mod:`subprocess` Module
30----------------------------------
Georg Brandl116aa622007-08-15 14:28:22 +000031
Gregory P. Smith6e730002015-04-14 16:14:25 -070032The recommended approach to invoking subprocesses is to use the :func:`run`
Benjamin Petersonef9ffcb2015-04-14 22:12:14 -040033function for all use cases it can handle. For more advanced use cases, the
34underlying :class:`Popen` interface can be used directly.
Nick Coghlanc29248f2011-11-08 20:49:23 +100035
Gregory P. Smith6e730002015-04-14 16:14:25 -070036The :func:`run` function was added in Python 3.5; if you need to retain
37compatibility with older versions, see the :ref:`call-function-trio` section.
Nick Coghlanc29248f2011-11-08 20:49:23 +100038
Gregory P. Smith6e730002015-04-14 16:14:25 -070039
40.. function:: run(args, *, stdin=None, input=None, stdout=None, stderr=None,\
Alex Gaynor368cf1d2017-05-25 22:28:17 -040041 shell=False, cwd=None, timeout=None, check=False, \
Steve Dower050acae2016-09-06 20:16:17 -070042 encoding=None, errors=None)
Nick Coghlanc29248f2011-11-08 20:49:23 +100043
44 Run the command described by *args*. Wait for command to complete, then
Gregory P. Smith6e730002015-04-14 16:14:25 -070045 return a :class:`CompletedProcess` instance.
Nick Coghlanc29248f2011-11-08 20:49:23 +100046
47 The arguments shown above are merely the most common ones, described below
Nick Coghlan217f05b2011-11-08 22:11:21 +100048 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. Smith6e730002015-04-14 16:14:25 -070050 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 Coghlan217f05b2011-11-08 22:11:21 +100053
Gregory P. Smith6e730002015-04-14 16:14:25 -070054 This does not capture stdout or stderr by default. To do so, pass
55 :data:`PIPE` for the *stdout* and/or *stderr* arguments.
Nick Coghlanc29248f2011-11-08 20:49:23 +100056
Gregory P. Smith6e730002015-04-14 16:14:25 -070057 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 Coghlan217f05b2011-11-08 22:11:21 +100059 :exc:`TimeoutExpired` exception will be re-raised after the child process
60 has terminated.
Nick Coghlanc29248f2011-11-08 20:49:23 +100061
Serhiy Storchakafcd9f222013-04-22 20:20:54 +030062 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
andyclegg7fed7bd2017-10-23 03:01:19 +010064 *encoding* or *errors* is specified or *text* is true. When
Steve Dower050acae2016-09-06 20:16:17 -070065 used, the internal :class:`Popen` object is automatically created with
66 ``stdin=PIPE``, and the *stdin* argument may not be used as well.
Serhiy Storchakafcd9f222013-04-22 20:20:54 +030067
Serhiy Storchaka4adf01c2016-10-19 18:30:05 +030068 If *check* is true, and the process exits with a non-zero exit code, a
Gregory P. Smith6e730002015-04-14 16:14:25 -070069 :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
andyclegg7fed7bd2017-10-23 03:01:19 +010073 If *encoding* or *errors* are specified, or *text* is true,
Steve Dower050acae2016-09-06 20:16:17 -070074 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.
andyclegg7fed7bd2017-10-23 03:01:19 +010076 The *universal_newlines* argument is equivalent to *text* and is provided
77 for backwards compatibility. By default, file objects are opened in binary mode.
Steve Dower050acae2016-09-06 20:16:17 -070078
Nick Coghlanc29248f2011-11-08 20:49:23 +100079 Examples::
80
Gregory P. Smith6e730002015-04-14 16:14:25 -070081 >>> subprocess.run(["ls", "-l"]) # doesn't capture output
82 CompletedProcess(args=['ls', '-l'], returncode=0)
Nick Coghlanc29248f2011-11-08 20:49:23 +100083
Gregory P. Smith6e730002015-04-14 16:14:25 -070084 >>> subprocess.run("exit 1", shell=True, check=True)
Nick Coghlanc29248f2011-11-08 20:49:23 +100085 Traceback (most recent call last):
Gregory P. Smith6e730002015-04-14 16:14:25 -070086 ...
Nick Coghlanc29248f2011-11-08 20:49:23 +100087 subprocess.CalledProcessError: Command 'exit 1' returned non-zero exit status 1
88
Gregory P. Smith6e730002015-04-14 16:14:25 -070089 >>> subprocess.run(["ls", "-l", "/dev/null"], stdout=subprocess.PIPE)
90 CompletedProcess(args=['ls', '-l', '/dev/null'], returncode=0,
91 stdout=b'crw-rw-rw- 1 root root 1, 3 Jan 23 16:23 /dev/null\n')
Nick Coghlanc29248f2011-11-08 20:49:23 +100092
Gregory P. Smith6e730002015-04-14 16:14:25 -070093 .. versionadded:: 3.5
Nick Coghlanc29248f2011-11-08 20:49:23 +100094
Steve Dower050acae2016-09-06 20:16:17 -070095 .. versionchanged:: 3.6
96
97 Added *encoding* and *errors* parameters
98
andyclegg7fed7bd2017-10-23 03:01:19 +010099 .. versionchanged:: 3.7
100
101 Added the *text* parameter, as a more understandable alias of *universal_newlines*
102
Gregory P. Smith6e730002015-04-14 16:14:25 -0700103.. class:: CompletedProcess
Nick Coghlanc29248f2011-11-08 20:49:23 +1000104
Gregory P. Smith6e730002015-04-14 16:14:25 -0700105 The return value from :func:`run`, representing a process that has finished.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000106
Gregory P. Smith6e730002015-04-14 16:14:25 -0700107 .. attribute:: args
Nick Coghlanc29248f2011-11-08 20:49:23 +1000108
Gregory P. Smith6e730002015-04-14 16:14:25 -0700109 The arguments used to launch the process. This may be a list or a string.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000110
Gregory P. Smith6e730002015-04-14 16:14:25 -0700111 .. attribute:: returncode
Serhiy Storchakafcd9f222013-04-22 20:20:54 +0300112
Gregory P. Smith6e730002015-04-14 16:14:25 -0700113 Exit status of the child process. Typically, an exit status of 0 indicates
114 that it ran successfully.
Nick Coghlan217f05b2011-11-08 22:11:21 +1000115
Gregory P. Smith6e730002015-04-14 16:14:25 -0700116 A negative value ``-N`` indicates that the child was terminated by signal
117 ``N`` (POSIX only).
118
119 .. attribute:: stdout
120
121 Captured stdout from the child process. A bytes sequence, or a string if
andyclegg7fed7bd2017-10-23 03:01:19 +0100122 :func:`run` was called with an encoding, errors, or text=True.
123 ``None`` if stdout was not captured.
Gregory P. Smith6e730002015-04-14 16:14:25 -0700124
125 If you ran the process with ``stderr=subprocess.STDOUT``, stdout and
126 stderr will be combined in this attribute, and :attr:`stderr` will be
Serhiy Storchakaecf41da2016-10-19 16:29:26 +0300127 ``None``.
Gregory P. Smith6e730002015-04-14 16:14:25 -0700128
129 .. attribute:: stderr
130
131 Captured stderr from the child process. A bytes sequence, or a string if
andyclegg7fed7bd2017-10-23 03:01:19 +0100132 :func:`run` was called with an encoding, errors, or text=True.
133 ``None`` if stderr was not captured.
Gregory P. Smith6e730002015-04-14 16:14:25 -0700134
135 .. method:: check_returncode()
136
137 If :attr:`returncode` is non-zero, raise a :exc:`CalledProcessError`.
138
139 .. versionadded:: 3.5
Nick Coghlan217f05b2011-11-08 22:11:21 +1000140
141.. data:: DEVNULL
142
143 Special value that can be used as the *stdin*, *stdout* or *stderr* argument
144 to :class:`Popen` and indicates that the special file :data:`os.devnull`
145 will be used.
146
147 .. versionadded:: 3.3
148
Nick Coghlanc29248f2011-11-08 20:49:23 +1000149
150.. data:: PIPE
151
152 Special value that can be used as the *stdin*, *stdout* or *stderr* argument
153 to :class:`Popen` and indicates that a pipe to the standard stream should be
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700154 opened. Most useful with :meth:`Popen.communicate`.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000155
156
157.. data:: STDOUT
158
159 Special value that can be used as the *stderr* argument to :class:`Popen` and
160 indicates that standard error should go into the same handle as standard
161 output.
162
163
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300164.. exception:: SubprocessError
165
166 Base class for all other exceptions from this module.
167
168 .. versionadded:: 3.3
169
170
171.. exception:: TimeoutExpired
172
173 Subclass of :exc:`SubprocessError`, raised when a timeout expires
174 while waiting for a child process.
175
176 .. attribute:: cmd
177
178 Command that was used to spawn the child process.
179
180 .. attribute:: timeout
181
182 Timeout in seconds.
183
184 .. attribute:: output
185
Gregory P. Smith6e730002015-04-14 16:14:25 -0700186 Output of the child process if it was captured by :func:`run` or
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300187 :func:`check_output`. Otherwise, ``None``.
188
Gregory P. Smith6e730002015-04-14 16:14:25 -0700189 .. attribute:: stdout
190
191 Alias for output, for symmetry with :attr:`stderr`.
192
193 .. attribute:: stderr
194
195 Stderr output of the child process if it was captured by :func:`run`.
196 Otherwise, ``None``.
197
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300198 .. versionadded:: 3.3
199
Gregory P. Smith6e730002015-04-14 16:14:25 -0700200 .. versionchanged:: 3.5
201 *stdout* and *stderr* attributes added
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300202
203.. exception:: CalledProcessError
204
205 Subclass of :exc:`SubprocessError`, raised when a process run by
206 :func:`check_call` or :func:`check_output` returns a non-zero exit status.
207
208 .. attribute:: returncode
209
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)583a1d62016-06-03 00:31:21 +0000210 Exit status of the child process. If the process exited due to a
211 signal, this will be the negative signal number.
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300212
213 .. attribute:: cmd
214
215 Command that was used to spawn the child process.
216
217 .. attribute:: output
218
Gregory P. Smith6e730002015-04-14 16:14:25 -0700219 Output of the child process if it was captured by :func:`run` or
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300220 :func:`check_output`. Otherwise, ``None``.
221
Gregory P. Smith6e730002015-04-14 16:14:25 -0700222 .. attribute:: stdout
223
224 Alias for output, for symmetry with :attr:`stderr`.
225
226 .. attribute:: stderr
227
228 Stderr output of the child process if it was captured by :func:`run`.
229 Otherwise, ``None``.
230
231 .. versionchanged:: 3.5
232 *stdout* and *stderr* attributes added
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300233
234
Nick Coghlanc29248f2011-11-08 20:49:23 +1000235.. _frequently-used-arguments:
236
237Frequently Used Arguments
238^^^^^^^^^^^^^^^^^^^^^^^^^
239
240To support a wide variety of use cases, the :class:`Popen` constructor (and
241the convenience functions) accept a large number of optional arguments. For
242most typical use cases, many of these arguments can be safely left at their
243default values. The arguments that are most commonly needed are:
244
245 *args* is required for all calls and should be a string, or a sequence of
246 program arguments. Providing a sequence of arguments is generally
247 preferred, as it allows the module to take care of any required escaping
248 and quoting of arguments (e.g. to permit spaces in file names). If passing
249 a single string, either *shell* must be :const:`True` (see below) or else
250 the string must simply name the program to be executed without specifying
251 any arguments.
252
253 *stdin*, *stdout* and *stderr* specify the executed program's standard input,
254 standard output and standard error file handles, respectively. Valid values
Nick Coghlan217f05b2011-11-08 22:11:21 +1000255 are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive
256 integer), an existing file object, and ``None``. :data:`PIPE` indicates
257 that a new pipe to the child should be created. :data:`DEVNULL` indicates
258 that the special file :data:`os.devnull` will be used. With the default
259 settings of ``None``, no redirection will occur; the child's file handles
260 will be inherited from the parent. Additionally, *stderr* can be
261 :data:`STDOUT`, which indicates that the stderr data from the child
262 process should be captured into the same file handle as for *stdout*.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000263
R David Murray1b00f252012-08-15 10:43:58 -0400264 .. index::
265 single: universal newlines; subprocess module
266
Serhiy Storchaka7d6dda42016-10-19 18:36:51 +0300267 If *encoding* or *errors* are specified, or *universal_newlines* is true,
Steve Dower050acae2016-09-06 20:16:17 -0700268 the file objects *stdin*, *stdout* and *stderr* will be opened in text
269 mode using the *encoding* and *errors* specified in the call or the
270 defaults for :class:`io.TextIOWrapper`.
Ronald Oussoren385521c2013-07-07 09:26:45 +0200271
Steve Dower050acae2016-09-06 20:16:17 -0700272 For *stdin*, line ending characters ``'\n'`` in the input will be converted
273 to the default line separator :data:`os.linesep`. For *stdout* and *stderr*,
274 all line endings in the output will be converted to ``'\n'``. For more
275 information see the documentation of the :class:`io.TextIOWrapper` class
276 when the *newline* argument to its constructor is ``None``.
277
278 If text mode is not used, *stdin*, *stdout* and *stderr* will be opened as
279 binary streams. No encoding or line ending conversion is performed.
280
281 .. versionadded:: 3.6
282 Added *encoding* and *errors* parameters.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000283
Andrew Svetlov50be4522012-08-13 22:09:04 +0300284 .. note::
285
Gregory P. Smith1f8a40b2013-03-20 18:32:03 -0700286 The newlines attribute of the file objects :attr:`Popen.stdin`,
287 :attr:`Popen.stdout` and :attr:`Popen.stderr` are not updated by
288 the :meth:`Popen.communicate` method.
Andrew Svetlov50be4522012-08-13 22:09:04 +0300289
290 If *shell* is ``True``, the specified command will be executed through
Ezio Melotti186d5232012-09-15 08:34:08 +0300291 the shell. This can be useful if you are using Python primarily for the
Nick Coghlanc29248f2011-11-08 20:49:23 +1000292 enhanced control flow it offers over most system shells and still want
Ezio Melotti186d5232012-09-15 08:34:08 +0300293 convenient access to other shell features such as shell pipes, filename
294 wildcards, environment variable expansion, and expansion of ``~`` to a
295 user's home directory. However, note that Python itself offers
296 implementations of many shell-like features (in particular, :mod:`glob`,
297 :mod:`fnmatch`, :func:`os.walk`, :func:`os.path.expandvars`,
298 :func:`os.path.expanduser`, and :mod:`shutil`).
Nick Coghlanc29248f2011-11-08 20:49:23 +1000299
Andrew Svetlov4805fa82012-08-13 22:11:14 +0300300 .. versionchanged:: 3.3
301 When *universal_newlines* is ``True``, the class uses the encoding
302 :func:`locale.getpreferredencoding(False) <locale.getpreferredencoding>`
303 instead of ``locale.getpreferredencoding()``. See the
304 :class:`io.TextIOWrapper` class for more information on this change.
305
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700306 .. note::
Nick Coghlanc29248f2011-11-08 20:49:23 +1000307
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700308 Read the `Security Considerations`_ section before using ``shell=True``.
Andrew Svetlovc2415eb2012-10-28 11:42:26 +0200309
Nick Coghlanc29248f2011-11-08 20:49:23 +1000310These options, along with all of the other options, are described in more
311detail in the :class:`Popen` constructor documentation.
312
313
Sandro Tosi1526ad12011-12-25 11:27:37 +0100314Popen Constructor
Sandro Tosi3e6c8142011-12-25 17:14:11 +0100315^^^^^^^^^^^^^^^^^
Nick Coghlanc29248f2011-11-08 20:49:23 +1000316
317The underlying process creation and management in this module is handled by
318the :class:`Popen` class. It offers a lot of flexibility so that developers
319are able to handle the less common cases not covered by the convenience
320functions.
Georg Brandl116aa622007-08-15 14:28:22 +0000321
322
Gregory P. Smitha1ed5392013-03-23 11:44:25 -0700323.. class:: Popen(args, bufsize=-1, executable=None, stdin=None, stdout=None, \
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700324 stderr=None, preexec_fn=None, close_fds=True, shell=False, \
325 cwd=None, env=None, universal_newlines=False, \
326 startupinfo=None, creationflags=0, restore_signals=True, \
Steve Dower050acae2016-09-06 20:16:17 -0700327 start_new_session=False, pass_fds=(), *, \
328 encoding=None, errors=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000329
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700330 Execute a child program in a new process. On POSIX, the class uses
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700331 :meth:`os.execvp`-like behavior to execute the child program. On Windows,
332 the class uses the Windows ``CreateProcess()`` function. The arguments to
333 :class:`Popen` are as follows.
Georg Brandl116aa622007-08-15 14:28:22 +0000334
Chris Jerdonek470ee392012-10-08 23:06:57 -0700335 *args* should be a sequence of program arguments or else a single string.
336 By default, the program to execute is the first item in *args* if *args* is
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700337 a sequence. If *args* is a string, the interpretation is
338 platform-dependent and described below. See the *shell* and *executable*
339 arguments for additional differences from the default behavior. Unless
340 otherwise stated, it is recommended to pass *args* as a sequence.
Georg Brandl116aa622007-08-15 14:28:22 +0000341
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700342 On POSIX, if *args* is a string, the string is interpreted as the name or
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700343 path of the program to execute. However, this can only be done if not
344 passing arguments to the program.
Georg Brandl116aa622007-08-15 14:28:22 +0000345
R. David Murray5973e4d2010-02-04 16:41:57 +0000346 .. note::
347
348 :meth:`shlex.split` can be useful when determining the correct
349 tokenization for *args*, especially in complex cases::
350
351 >>> import shlex, subprocess
R. David Murray73bc75b2010-02-05 16:25:12 +0000352 >>> command_line = input()
R. David Murray5973e4d2010-02-04 16:41:57 +0000353 /bin/vikings -input eggs.txt -output "spam spam.txt" -cmd "echo '$MONEY'"
354 >>> args = shlex.split(command_line)
355 >>> print(args)
356 ['/bin/vikings', '-input', 'eggs.txt', '-output', 'spam spam.txt', '-cmd', "echo '$MONEY'"]
357 >>> p = subprocess.Popen(args) # Success!
358
359 Note in particular that options (such as *-input*) and arguments (such
360 as *eggs.txt*) that are separated by whitespace in the shell go in separate
361 list elements, while arguments that need quoting or backslash escaping when
362 used in the shell (such as filenames containing spaces or the *echo* command
363 shown above) are single list elements.
364
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700365 On Windows, if *args* is a sequence, it will be converted to a string in a
366 manner described in :ref:`converting-argument-sequence`. This is because
367 the underlying ``CreateProcess()`` operates on strings.
Chris Jerdonek470ee392012-10-08 23:06:57 -0700368
Serhiy Storchakaa97cd2e2016-10-19 16:43:42 +0300369 The *shell* argument (which defaults to ``False``) specifies whether to use
370 the shell as the program to execute. If *shell* is ``True``, it is
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700371 recommended to pass *args* as a string rather than as a sequence.
Chris Jerdonek470ee392012-10-08 23:06:57 -0700372
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700373 On POSIX with ``shell=True``, the shell defaults to :file:`/bin/sh`. If
Chris Jerdonek470ee392012-10-08 23:06:57 -0700374 *args* is a string, the string specifies the command
375 to execute through the shell. This means that the string must be
R. David Murray5973e4d2010-02-04 16:41:57 +0000376 formatted exactly as it would be when typed at the shell prompt. This
377 includes, for example, quoting or backslash escaping filenames with spaces in
378 them. If *args* is a sequence, the first item specifies the command string, and
379 any additional items will be treated as additional arguments to the shell
Chris Jerdonek470ee392012-10-08 23:06:57 -0700380 itself. That is to say, :class:`Popen` does the equivalent of::
R. David Murray5973e4d2010-02-04 16:41:57 +0000381
382 Popen(['/bin/sh', '-c', args[0], args[1], ...])
Georg Brandl116aa622007-08-15 14:28:22 +0000383
Chris Jerdonek470ee392012-10-08 23:06:57 -0700384 On Windows with ``shell=True``, the :envvar:`COMSPEC` environment variable
385 specifies the default shell. The only time you need to specify
386 ``shell=True`` on Windows is when the command you wish to execute is built
387 into the shell (e.g. :command:`dir` or :command:`copy`). You do not need
388 ``shell=True`` to run a batch file or console-based executable.
Georg Brandl116aa622007-08-15 14:28:22 +0000389
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700390 .. note::
Chris Jerdonekcc32a682012-10-10 22:52:22 -0700391
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700392 Read the `Security Considerations`_ section before using ``shell=True``.
Chris Jerdonekcc32a682012-10-10 22:52:22 -0700393
Antoine Pitrouafe8d062014-09-21 21:10:56 +0200394 *bufsize* will be supplied as the corresponding argument to the
395 :func:`open` function when creating the stdin/stdout/stderr pipe
396 file objects:
397
398 - :const:`0` means unbuffered (read and write are one
399 system call and can return short)
400 - :const:`1` means line buffered
401 (only usable if ``universal_newlines=True`` i.e., in a text mode)
402 - any other positive value means use a buffer of approximately that
403 size
404 - negative bufsize (the default) means the system default of
405 io.DEFAULT_BUFFER_SIZE will be used.
Georg Brandl116aa622007-08-15 14:28:22 +0000406
Georg Brandl37b70bb2013-11-25 08:48:37 +0100407 .. versionchanged:: 3.3.1
Gregory P. Smitha1ed5392013-03-23 11:44:25 -0700408 *bufsize* now defaults to -1 to enable buffering by default to match the
Georg Brandl37b70bb2013-11-25 08:48:37 +0100409 behavior that most code expects. In versions prior to Python 3.2.4 and
410 3.3.1 it incorrectly defaulted to :const:`0` which was unbuffered
411 and allowed short reads. This was unintentional and did not match the
412 behavior of Python 2 as most code expected.
Antoine Pitrou4b876202010-06-02 17:10:49 +0000413
Chris Jerdonek470ee392012-10-08 23:06:57 -0700414 The *executable* argument specifies a replacement program to execute. It
415 is very seldom needed. When ``shell=False``, *executable* replaces the
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700416 program to execute specified by *args*. However, the original *args* is
417 still passed to the program. Most programs treat the program specified
418 by *args* as the command name, which can then be different from the program
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700419 actually executed. On POSIX, the *args* name
Chris Jerdonek470ee392012-10-08 23:06:57 -0700420 becomes the display name for the executable in utilities such as
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700421 :program:`ps`. If ``shell=True``, on POSIX the *executable* argument
Chris Jerdonek470ee392012-10-08 23:06:57 -0700422 specifies a replacement shell for the default :file:`/bin/sh`.
Georg Brandl116aa622007-08-15 14:28:22 +0000423
Nick Coghlanc29248f2011-11-08 20:49:23 +1000424 *stdin*, *stdout* and *stderr* specify the executed program's standard input,
Georg Brandlaf265f42008-12-07 15:06:20 +0000425 standard output and standard error file handles, respectively. Valid values
Ross Lagerwallba102ec2011-03-16 18:40:25 +0200426 are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive
427 integer), an existing :term:`file object`, and ``None``. :data:`PIPE`
428 indicates that a new pipe to the child should be created. :data:`DEVNULL`
Nick Coghlan217f05b2011-11-08 22:11:21 +1000429 indicates that the special file :data:`os.devnull` will be used. With the
430 default settings of ``None``, no redirection will occur; the child's file
431 handles will be inherited from the parent. Additionally, *stderr* can be
432 :data:`STDOUT`, which indicates that the stderr data from the applications
433 should be captured into the same file handle as for stdout.
Georg Brandl116aa622007-08-15 14:28:22 +0000434
435 If *preexec_fn* is set to a callable object, this object will be called in the
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000436 child process just before the child is executed.
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700437 (POSIX only)
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000438
439 .. warning::
440
441 The *preexec_fn* parameter is not safe to use in the presence of threads
442 in your application. The child process could deadlock before exec is
443 called.
444 If you must use it, keep it trivial! Minimize the number of libraries
445 you call into.
446
447 .. note::
448
449 If you need to modify the environment for the child use the *env*
450 parameter rather than doing it in a *preexec_fn*.
451 The *start_new_session* parameter can take the place of a previously
452 common use of *preexec_fn* to call os.setsid() in the child.
Georg Brandl116aa622007-08-15 14:28:22 +0000453
454 If *close_fds* is true, all file descriptors except :const:`0`, :const:`1` and
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700455 :const:`2` will be closed before the child process is executed. (POSIX only).
456 The default varies by platform: Always true on POSIX. On Windows it is
Gregory P. Smith8edd99d2010-12-14 13:43:30 +0000457 true when *stdin*/*stdout*/*stderr* are :const:`None`, false otherwise.
Gregory P. Smithd23047b2010-12-04 09:10:44 +0000458 On Windows, if *close_fds* is true then no handles will be inherited by the
Georg Brandl116aa622007-08-15 14:28:22 +0000459 child process. Note that on Windows, you cannot set *close_fds* to true and
460 also redirect the standard handles by setting *stdin*, *stdout* or *stderr*.
461
Gregory P. Smith8edd99d2010-12-14 13:43:30 +0000462 .. versionchanged:: 3.2
463 The default for *close_fds* was changed from :const:`False` to
464 what is described above.
465
466 *pass_fds* is an optional sequence of file descriptors to keep open
467 between the parent and child. Providing any *pass_fds* forces
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700468 *close_fds* to be :const:`True`. (POSIX only)
Gregory P. Smith8edd99d2010-12-14 13:43:30 +0000469
470 .. versionadded:: 3.2
471 The *pass_fds* parameter was added.
Georg Brandl116aa622007-08-15 14:28:22 +0000472
Chris Jerdonekec3ea942012-09-30 00:10:28 -0700473 If *cwd* is not ``None``, the function changes the working directory to
Sayan Chowdhuryd5c11f72017-02-26 22:36:10 +0530474 *cwd* before executing the child. *cwd* can be a :class:`str` and
475 :term:`path-like <path-like object>` object. In particular, the function
476 looks for *executable* (or for the first item in *args*) relative to *cwd*
477 if the executable path is a relative path.
478
479 .. versionchanged:: 3.6
480 *cwd* parameter accepts a :term:`path-like object`.
Georg Brandl116aa622007-08-15 14:28:22 +0000481
Serhiy Storchakafbc1c262013-11-29 12:17:13 +0200482 If *restore_signals* is true (the default) all signals that Python has set to
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000483 SIG_IGN are restored to SIG_DFL in the child process before the exec.
484 Currently this includes the SIGPIPE, SIGXFZ and SIGXFSZ signals.
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700485 (POSIX only)
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000486
487 .. versionchanged:: 3.2
488 *restore_signals* was added.
489
Serhiy Storchakafbc1c262013-11-29 12:17:13 +0200490 If *start_new_session* is true the setsid() system call will be made in the
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700491 child process prior to the execution of the subprocess. (POSIX only)
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000492
493 .. versionchanged:: 3.2
494 *start_new_session* was added.
495
Christian Heimesa342c012008-04-20 21:01:16 +0000496 If *env* is not ``None``, it must be a mapping that defines the environment
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000497 variables for the new process; these are used instead of the default
498 behavior of inheriting the current process' environment.
Georg Brandl116aa622007-08-15 14:28:22 +0000499
R. David Murray1055e892009-04-16 18:15:32 +0000500 .. note::
R. David Murrayf4ac1492009-04-15 22:35:15 +0000501
Georg Brandl2708f3a2009-12-20 14:38:23 +0000502 If specified, *env* must provide any variables required for the program to
503 execute. On Windows, in order to run a `side-by-side assembly`_ the
504 specified *env* **must** include a valid :envvar:`SystemRoot`.
R. David Murrayf4ac1492009-04-15 22:35:15 +0000505
Georg Brandl5d941342016-02-26 19:37:12 +0100506 .. _side-by-side assembly: https://en.wikipedia.org/wiki/Side-by-Side_Assembly
R. David Murray1055e892009-04-16 18:15:32 +0000507
Steve Dower050acae2016-09-06 20:16:17 -0700508 If *encoding* or *errors* are specified, the file objects *stdin*, *stdout*
509 and *stderr* are opened in text mode with the specified encoding and
510 *errors*, as described above in :ref:`frequently-used-arguments`. If
511 *universal_newlines* is ``True``, they are opened in text mode with default
512 encoding. Otherwise, they are opened as binary streams.
513
514 .. versionadded:: 3.6
515 *encoding* and *errors* were added.
Georg Brandl116aa622007-08-15 14:28:22 +0000516
Brian Curtine6242d72011-04-29 22:17:51 -0500517 If given, *startupinfo* will be a :class:`STARTUPINFO` object, which is
518 passed to the underlying ``CreateProcess`` function.
Jamesb5d9e082017-11-08 14:18:59 +0000519 *creationflags*, if given, can be one or more of the following flags:
520
521 * :data:`CREATE_NEW_CONSOLE`
522 * :data:`CREATE_NEW_PROCESS_GROUP`
523 * :data:`ABOVE_NORMAL_PRIORITY_CLASS`
524 * :data:`BELOW_NORMAL_PRIORITY_CLASS`
525 * :data:`HIGH_PRIORITY_CLASS`
526 * :data:`IDLE_PRIORITY_CLASS`
527 * :data:`NORMAL_PRIORITY_CLASS`
528 * :data:`REALTIME_PRIORITY_CLASS`
529 * :data:`CREATE_NO_WINDOW`
530 * :data:`DETACHED_PROCESS`
531 * :data:`CREATE_DEFAULT_ERROR_MODE`
532 * :data:`CREATE_BREAKAWAY_FROM_JOB`
Georg Brandl116aa622007-08-15 14:28:22 +0000533
Gregory P. Smith6b657452011-05-11 21:42:08 -0700534 Popen objects are supported as context managers via the :keyword:`with` statement:
535 on exit, standard file descriptors are closed, and the process is waited for.
Brian Curtin79cdb662010-12-03 02:46:02 +0000536 ::
537
538 with Popen(["ifconfig"], stdout=PIPE) as proc:
539 log.write(proc.stdout.read())
540
541 .. versionchanged:: 3.2
542 Added context manager support.
543
Victor Stinner5a48e212016-05-20 12:11:15 +0200544 .. versionchanged:: 3.6
545 Popen destructor now emits a :exc:`ResourceWarning` warning if the child
546 process is still running.
547
Georg Brandl116aa622007-08-15 14:28:22 +0000548
Georg Brandl116aa622007-08-15 14:28:22 +0000549Exceptions
550^^^^^^^^^^
551
552Exceptions raised in the child process, before the new program has started to
553execute, will be re-raised in the parent. Additionally, the exception object
554will have one extra attribute called :attr:`child_traceback`, which is a string
Georg Brandl81675612010-08-26 14:30:56 +0000555containing traceback information from the child's point of view.
Georg Brandl116aa622007-08-15 14:28:22 +0000556
557The most common exception raised is :exc:`OSError`. This occurs, for example,
558when trying to execute a non-existent file. Applications should prepare for
559:exc:`OSError` exceptions.
560
561A :exc:`ValueError` will be raised if :class:`Popen` is called with invalid
562arguments.
563
Nick Coghlanc29248f2011-11-08 20:49:23 +1000564:func:`check_call` and :func:`check_output` will raise
565:exc:`CalledProcessError` if the called process returns a non-zero return
566code.
Georg Brandl116aa622007-08-15 14:28:22 +0000567
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400568All of the functions and methods that accept a *timeout* parameter, such as
569:func:`call` and :meth:`Popen.communicate` will raise :exc:`TimeoutExpired` if
570the timeout expires before the process exits.
571
Ronald Oussorenc1577902011-03-16 10:03:10 -0400572Exceptions defined in this module all inherit from :exc:`SubprocessError`.
Gregory P. Smith54d412e2011-03-14 14:08:43 -0400573
574 .. versionadded:: 3.3
575 The :exc:`SubprocessError` base class was added.
576
Georg Brandl116aa622007-08-15 14:28:22 +0000577
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700578Security Considerations
579-----------------------
Georg Brandl116aa622007-08-15 14:28:22 +0000580
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700581Unlike some other popen functions, this implementation will never
582implicitly call a system shell. This means that all characters,
583including shell metacharacters, can safely be passed to child processes.
584If the shell is invoked explicitly, via ``shell=True``, it is the application's
585responsibility to ensure that all whitespace and metacharacters are
586quoted appropriately to avoid
Georg Brandl5d941342016-02-26 19:37:12 +0100587`shell injection <https://en.wikipedia.org/wiki/Shell_injection#Shell_injection>`_
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700588vulnerabilities.
589
590When using ``shell=True``, the :func:`shlex.quote` function can be
591used to properly escape whitespace and shell metacharacters in strings
592that are going to be used to construct shell commands.
Georg Brandl116aa622007-08-15 14:28:22 +0000593
594
595Popen Objects
596-------------
597
598Instances of the :class:`Popen` class have the following methods:
599
600
601.. method:: Popen.poll()
602
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +0300603 Check if child process has terminated. Set and return
Ivan Chernoff006617f2017-08-29 17:46:24 +0300604 :attr:`~Popen.returncode` attribute. Otherwise, returns ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000605
606
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400607.. method:: Popen.wait(timeout=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000608
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +0300609 Wait for child process to terminate. Set and return
610 :attr:`~Popen.returncode` attribute.
Georg Brandl116aa622007-08-15 14:28:22 +0000611
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400612 If the process does not terminate after *timeout* seconds, raise a
613 :exc:`TimeoutExpired` exception. It is safe to catch this exception and
614 retry the wait.
615
Victor Stinner07171242014-02-24 13:18:47 +0100616 .. note::
617
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700618 This will deadlock when using ``stdout=PIPE`` or ``stderr=PIPE``
619 and the child process generates enough output to a pipe such that
620 it blocks waiting for the OS pipe buffer to accept more data.
621 Use :meth:`Popen.communicate` when using pipes to avoid that.
622
623 .. note::
624
Victor Stinner07171242014-02-24 13:18:47 +0100625 The function is implemented using a busy loop (non-blocking call and
626 short sleeps). Use the :mod:`asyncio` module for an asynchronous wait:
627 see :class:`asyncio.create_subprocess_exec`.
628
Reid Kleckner28f13032011-03-14 12:36:53 -0400629 .. versionchanged:: 3.3
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400630 *timeout* was added.
Georg Brandl116aa622007-08-15 14:28:22 +0000631
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400632.. method:: Popen.communicate(input=None, timeout=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000633
634 Interact with process: Send data to stdin. Read data from stdout and stderr,
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400635 until end-of-file is reached. Wait for process to terminate. The optional
Gregory P. Smitha454ef62011-05-22 22:29:49 -0700636 *input* argument should be data to be sent to the child process, or
Steve Dower050acae2016-09-06 20:16:17 -0700637 ``None``, if no data should be sent to the child. If streams were opened in
638 text mode, *input* must be a string. Otherwise, it must be bytes.
Georg Brandl116aa622007-08-15 14:28:22 +0000639
Victor Stinner39892052014-10-14 00:52:07 +0200640 :meth:`communicate` returns a tuple ``(stdout_data, stderr_data)``.
Steve Dower050acae2016-09-06 20:16:17 -0700641 The data will be strings if streams were opened in text mode; otherwise,
642 bytes.
Georg Brandl116aa622007-08-15 14:28:22 +0000643
Guido van Rossum0d3fb8a2007-11-26 23:23:18 +0000644 Note that if you want to send data to the process's stdin, you need to create
645 the Popen object with ``stdin=PIPE``. Similarly, to get anything other than
646 ``None`` in the result tuple, you need to give ``stdout=PIPE`` and/or
647 ``stderr=PIPE`` too.
648
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400649 If the process does not terminate after *timeout* seconds, a
650 :exc:`TimeoutExpired` exception will be raised. Catching this exception and
651 retrying communication will not lose any output.
652
653 The child process is not killed if the timeout expires, so in order to
654 cleanup properly a well-behaved application should kill the child process and
655 finish communication::
656
657 proc = subprocess.Popen(...)
658 try:
659 outs, errs = proc.communicate(timeout=15)
660 except TimeoutExpired:
661 proc.kill()
662 outs, errs = proc.communicate()
663
Christian Heimes7f044312008-01-06 17:05:40 +0000664 .. note::
Georg Brandl116aa622007-08-15 14:28:22 +0000665
Christian Heimes7f044312008-01-06 17:05:40 +0000666 The data read is buffered in memory, so do not use this method if the data
667 size is large or unlimited.
668
Reid Kleckner28f13032011-03-14 12:36:53 -0400669 .. versionchanged:: 3.3
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400670 *timeout* was added.
671
Georg Brandl116aa622007-08-15 14:28:22 +0000672
Christian Heimesa342c012008-04-20 21:01:16 +0000673.. method:: Popen.send_signal(signal)
674
675 Sends the signal *signal* to the child.
676
677 .. note::
678
Brian Curtineb24d742010-04-12 17:16:38 +0000679 On Windows, SIGTERM is an alias for :meth:`terminate`. CTRL_C_EVENT and
Senthil Kumaran916bd382010-10-15 12:55:19 +0000680 CTRL_BREAK_EVENT can be sent to processes started with a *creationflags*
Brian Curtineb24d742010-04-12 17:16:38 +0000681 parameter which includes `CREATE_NEW_PROCESS_GROUP`.
Christian Heimesa342c012008-04-20 21:01:16 +0000682
Christian Heimesa342c012008-04-20 21:01:16 +0000683
684.. method:: Popen.terminate()
685
686 Stop the child. On Posix OSs the method sends SIGTERM to the
Georg Brandl60203b42010-10-06 10:11:56 +0000687 child. On Windows the Win32 API function :c:func:`TerminateProcess` is called
Christian Heimesa342c012008-04-20 21:01:16 +0000688 to stop the child.
689
Christian Heimesa342c012008-04-20 21:01:16 +0000690
691.. method:: Popen.kill()
692
693 Kills the child. On Posix OSs the function sends SIGKILL to the child.
694 On Windows :meth:`kill` is an alias for :meth:`terminate`.
695
Christian Heimesa342c012008-04-20 21:01:16 +0000696
Georg Brandl116aa622007-08-15 14:28:22 +0000697The following attributes are also available:
698
Gregory P. Smith024c5ee2014-04-29 11:33:23 -0700699.. attribute:: Popen.args
700
701 The *args* argument as it was passed to :class:`Popen` -- a
702 sequence of program arguments or else a single string.
703
704 .. versionadded:: 3.3
Georg Brandl734e2682008-08-12 08:18:18 +0000705
Georg Brandl116aa622007-08-15 14:28:22 +0000706.. attribute:: Popen.stdin
707
Benjamin Peterson3d8814e2014-01-18 00:45:56 -0500708 If the *stdin* argument was :data:`PIPE`, this attribute is a writeable
Steve Dower050acae2016-09-06 20:16:17 -0700709 stream object as returned by :func:`open`. If the *encoding* or *errors*
710 arguments were specified or the *universal_newlines* argument was ``True``,
711 the stream is a text stream, otherwise it is a byte stream. If the *stdin*
712 argument was not :data:`PIPE`, this attribute is ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000713
714
715.. attribute:: Popen.stdout
716
Benjamin Peterson3d8814e2014-01-18 00:45:56 -0500717 If the *stdout* argument was :data:`PIPE`, this attribute is a readable
718 stream object as returned by :func:`open`. Reading from the stream provides
Steve Dower050acae2016-09-06 20:16:17 -0700719 output from the child process. If the *encoding* or *errors* arguments were
720 specified or the *universal_newlines* argument was ``True``, the stream is a
721 text stream, otherwise it is a byte stream. If the *stdout* argument was not
722 :data:`PIPE`, this attribute is ``None``.
Benjamin Petersonaf69fe22014-01-18 00:49:04 -0500723
Georg Brandl116aa622007-08-15 14:28:22 +0000724
725.. attribute:: Popen.stderr
726
Benjamin Peterson3d8814e2014-01-18 00:45:56 -0500727 If the *stderr* argument was :data:`PIPE`, this attribute is a readable
728 stream object as returned by :func:`open`. Reading from the stream provides
Steve Dower050acae2016-09-06 20:16:17 -0700729 error output from the child process. If the *encoding* or *errors* arguments
730 were specified or the *universal_newlines* argument was ``True``, the stream
731 is a text stream, otherwise it is a byte stream. If the *stderr* argument was
732 not :data:`PIPE`, this attribute is ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000733
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700734.. warning::
735
736 Use :meth:`~Popen.communicate` rather than :attr:`.stdin.write <Popen.stdin>`,
737 :attr:`.stdout.read <Popen.stdout>` or :attr:`.stderr.read <Popen.stderr>` to avoid
738 deadlocks due to any of the other OS pipe buffers filling up and blocking the
739 child process.
740
Georg Brandl116aa622007-08-15 14:28:22 +0000741
742.. attribute:: Popen.pid
743
744 The process ID of the child process.
745
Georg Brandl58bfdca2010-03-21 09:50:49 +0000746 Note that if you set the *shell* argument to ``True``, this is the process ID
747 of the spawned shell.
748
Georg Brandl116aa622007-08-15 14:28:22 +0000749
750.. attribute:: Popen.returncode
751
Christian Heimes7f044312008-01-06 17:05:40 +0000752 The child return code, set by :meth:`poll` and :meth:`wait` (and indirectly
753 by :meth:`communicate`). A ``None`` value indicates that the process
754 hasn't terminated yet.
Georg Brandl48310cd2009-01-03 21:18:54 +0000755
Christian Heimes7f044312008-01-06 17:05:40 +0000756 A negative value ``-N`` indicates that the child was terminated by signal
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700757 ``N`` (POSIX only).
Georg Brandl116aa622007-08-15 14:28:22 +0000758
759
Brian Curtine6242d72011-04-29 22:17:51 -0500760Windows Popen Helpers
761---------------------
762
763The :class:`STARTUPINFO` class and following constants are only available
764on Windows.
765
Berker Peksagf5184742017-03-01 12:51:55 +0300766.. class:: STARTUPINFO(*, dwFlags=0, hStdInput=None, hStdOutput=None, \
767 hStdError=None, wShowWindow=0)
Brian Curtin73365dd2011-04-29 22:18:33 -0500768
Brian Curtine6242d72011-04-29 22:17:51 -0500769 Partial support of the Windows
Georg Brandl5d941342016-02-26 19:37:12 +0100770 `STARTUPINFO <https://msdn.microsoft.com/en-us/library/ms686331(v=vs.85).aspx>`__
Berker Peksagf5184742017-03-01 12:51:55 +0300771 structure is used for :class:`Popen` creation. The following attributes can
772 be set by passing them as keyword-only arguments.
773
774 .. versionchanged:: 3.7
775 Keyword-only argument support was added.
Brian Curtine6242d72011-04-29 22:17:51 -0500776
777 .. attribute:: dwFlags
778
Senthil Kumarana6bac952011-07-04 11:28:30 -0700779 A bit field that determines whether certain :class:`STARTUPINFO`
780 attributes are used when the process creates a window. ::
Brian Curtine6242d72011-04-29 22:17:51 -0500781
782 si = subprocess.STARTUPINFO()
783 si.dwFlags = subprocess.STARTF_USESTDHANDLES | subprocess.STARTF_USESHOWWINDOW
784
785 .. attribute:: hStdInput
786
Senthil Kumarana6bac952011-07-04 11:28:30 -0700787 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
788 is the standard input handle for the process. If
789 :data:`STARTF_USESTDHANDLES` is not specified, the default for standard
790 input is the keyboard buffer.
Brian Curtine6242d72011-04-29 22:17:51 -0500791
792 .. attribute:: hStdOutput
793
Senthil Kumarana6bac952011-07-04 11:28:30 -0700794 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
795 is the standard output handle for the process. Otherwise, this attribute
796 is ignored and the default for standard output is the console window's
Brian Curtine6242d72011-04-29 22:17:51 -0500797 buffer.
798
799 .. attribute:: hStdError
800
Senthil Kumarana6bac952011-07-04 11:28:30 -0700801 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
802 is the standard error handle for the process. Otherwise, this attribute is
Brian Curtine6242d72011-04-29 22:17:51 -0500803 ignored and the default for standard error is the console window's buffer.
804
805 .. attribute:: wShowWindow
806
Senthil Kumarana6bac952011-07-04 11:28:30 -0700807 If :attr:`dwFlags` specifies :data:`STARTF_USESHOWWINDOW`, this attribute
Brian Curtine6242d72011-04-29 22:17:51 -0500808 can be any of the values that can be specified in the ``nCmdShow``
809 parameter for the
Georg Brandl5d941342016-02-26 19:37:12 +0100810 `ShowWindow <https://msdn.microsoft.com/en-us/library/ms633548(v=vs.85).aspx>`__
Senthil Kumarana6bac952011-07-04 11:28:30 -0700811 function, except for ``SW_SHOWDEFAULT``. Otherwise, this attribute is
Brian Curtine6242d72011-04-29 22:17:51 -0500812 ignored.
Brian Curtin73365dd2011-04-29 22:18:33 -0500813
Brian Curtine6242d72011-04-29 22:17:51 -0500814 :data:`SW_HIDE` is provided for this attribute. It is used when
815 :class:`Popen` is called with ``shell=True``.
816
817
Jamesb5d9e082017-11-08 14:18:59 +0000818Windows Constants
819^^^^^^^^^^^^^^^^^
Brian Curtine6242d72011-04-29 22:17:51 -0500820
821The :mod:`subprocess` module exposes the following constants.
822
823.. data:: STD_INPUT_HANDLE
824
825 The standard input device. Initially, this is the console input buffer,
826 ``CONIN$``.
827
828.. data:: STD_OUTPUT_HANDLE
829
830 The standard output device. Initially, this is the active console screen
831 buffer, ``CONOUT$``.
832
833.. data:: STD_ERROR_HANDLE
834
835 The standard error device. Initially, this is the active console screen
836 buffer, ``CONOUT$``.
837
838.. data:: SW_HIDE
839
840 Hides the window. Another window will be activated.
841
842.. data:: STARTF_USESTDHANDLES
843
844 Specifies that the :attr:`STARTUPINFO.hStdInput`,
Senthil Kumarana6bac952011-07-04 11:28:30 -0700845 :attr:`STARTUPINFO.hStdOutput`, and :attr:`STARTUPINFO.hStdError` attributes
Brian Curtine6242d72011-04-29 22:17:51 -0500846 contain additional information.
847
848.. data:: STARTF_USESHOWWINDOW
849
Senthil Kumarana6bac952011-07-04 11:28:30 -0700850 Specifies that the :attr:`STARTUPINFO.wShowWindow` attribute contains
Brian Curtine6242d72011-04-29 22:17:51 -0500851 additional information.
852
853.. data:: CREATE_NEW_CONSOLE
854
855 The new process has a new console, instead of inheriting its parent's
856 console (the default).
Brian Curtin73365dd2011-04-29 22:18:33 -0500857
Brian Curtin30401932011-04-29 22:20:57 -0500858.. data:: CREATE_NEW_PROCESS_GROUP
859
860 A :class:`Popen` ``creationflags`` parameter to specify that a new process
861 group will be created. This flag is necessary for using :func:`os.kill`
862 on the subprocess.
863
864 This flag is ignored if :data:`CREATE_NEW_CONSOLE` is specified.
865
Jamesb5d9e082017-11-08 14:18:59 +0000866.. data:: ABOVE_NORMAL_PRIORITY_CLASS
867
868 A :class:`Popen` ``creationflags`` parameter to specify that a new process
869 will have an above average priority.
870
871 .. versionadded:: 3.7
872
873.. data:: BELOW_NORMAL_PRIORITY_CLASS
874
875 A :class:`Popen` ``creationflags`` parameter to specify that a new process
876 will have a below average priority.
877
878 .. versionadded:: 3.7
879
880.. data:: HIGH_PRIORITY_CLASS
881
882 A :class:`Popen` ``creationflags`` parameter to specify that a new process
883 will have a high priority.
884
885 .. versionadded:: 3.7
886
887.. data:: IDLE_PRIORITY_CLASS
888
889 A :class:`Popen` ``creationflags`` parameter to specify that a new process
890 will have an idle (lowest) priority.
891
892 .. versionadded:: 3.7
893
894.. data:: NORMAL_PRIORITY_CLASS
895
896 A :class:`Popen` ``creationflags`` parameter to specify that a new process
897 will have an normal priority. (default)
898
899 .. versionadded:: 3.7
900
901.. data:: REALTIME_PRIORITY_CLASS
902
903 A :class:`Popen` ``creationflags`` parameter to specify that a new process
904 will have realtime priority.
905 You should almost never use REALTIME_PRIORITY_CLASS, because this interrupts
906 system threads that manage mouse input, keyboard input, and background disk
907 flushing. This class can be appropriate for applications that "talk" directly
908 to hardware or that perform brief tasks that should have limited interruptions.
909
910 .. versionadded:: 3.7
911
912.. data:: CREATE_NO_WINDOW
913
914 A :class:`Popen` ``creationflags`` parameter to specify that a new process
915 will not create a window
916
917 .. versionadded:: 3.7
918
919.. data:: DETACHED_PROCESS
920
921 A :class:`Popen` ``creationflags`` parameter to specify that a new process
922 will not inherit its parent's console.
923 This value cannot be used with CREATE_NEW_CONSOLE.
924
925 .. versionadded:: 3.7
926
927.. data:: CREATE_DEFAULT_ERROR_MODE
928
929 A :class:`Popen` ``creationflags`` parameter to specify that a new process
930 does not inherit the error mode of the calling process. Instead, the new
931 process gets the default error mode.
932 This feature is particularly useful for multithreaded shell applications
933 that run with hard errors disabled.
934
935 .. versionadded:: 3.7
936
937.. data:: CREATE_BREAKAWAY_FROM_JOB
938
939 A :class:`Popen` ``creationflags`` parameter to specify that a new process
940 is not associated with the job.
941
942 .. versionadded:: 3.7
943
Gregory P. Smith6e730002015-04-14 16:14:25 -0700944.. _call-function-trio:
945
946Older high-level API
947--------------------
948
949Prior to Python 3.5, these three functions comprised the high level API to
950subprocess. You can now use :func:`run` in many cases, but lots of existing code
951calls these functions.
952
Alex Gaynor368cf1d2017-05-25 22:28:17 -0400953.. function:: call(args, *, stdin=None, stdout=None, stderr=None, shell=False, cwd=None, timeout=None)
Gregory P. Smith6e730002015-04-14 16:14:25 -0700954
955 Run the command described by *args*. Wait for command to complete, then
Berker Peksagbf1d4b62015-07-25 14:27:07 +0300956 return the :attr:`~Popen.returncode` attribute.
Gregory P. Smith6e730002015-04-14 16:14:25 -0700957
958 This is equivalent to::
959
960 run(...).returncode
961
962 (except that the *input* and *check* parameters are not supported)
963
Berker Peksagbf1d4b62015-07-25 14:27:07 +0300964 The arguments shown above are merely the most
965 common ones. The full function signature is largely the
966 same as that of the :class:`Popen` constructor - this function passes all
967 supplied arguments other than *timeout* directly through to that interface.
968
Gregory P. Smith6e730002015-04-14 16:14:25 -0700969 .. note::
970
971 Do not use ``stdout=PIPE`` or ``stderr=PIPE`` with this
972 function. The child process will block if it generates enough
973 output to a pipe to fill up the OS pipe buffer as the pipes are
974 not being read from.
975
976 .. versionchanged:: 3.3
977 *timeout* was added.
978
Alex Gaynor368cf1d2017-05-25 22:28:17 -0400979.. function:: check_call(args, *, stdin=None, stdout=None, stderr=None, shell=False, cwd=None, timeout=None)
Gregory P. Smith6e730002015-04-14 16:14:25 -0700980
981 Run command with arguments. Wait for command to complete. If the return
982 code was zero then return, otherwise raise :exc:`CalledProcessError`. The
983 :exc:`CalledProcessError` object will have the return code in the
984 :attr:`~CalledProcessError.returncode` attribute.
985
986 This is equivalent to::
987
988 run(..., check=True)
989
990 (except that the *input* parameter is not supported)
991
Berker Peksagbf1d4b62015-07-25 14:27:07 +0300992 The arguments shown above are merely the most
993 common ones. The full function signature is largely the
994 same as that of the :class:`Popen` constructor - this function passes all
995 supplied arguments other than *timeout* directly through to that interface.
996
Gregory P. Smith6e730002015-04-14 16:14:25 -0700997 .. note::
998
999 Do not use ``stdout=PIPE`` or ``stderr=PIPE`` with this
1000 function. The child process will block if it generates enough
1001 output to a pipe to fill up the OS pipe buffer as the pipes are
1002 not being read from.
1003
1004 .. versionchanged:: 3.3
1005 *timeout* was added.
1006
1007
Steve Dower050acae2016-09-06 20:16:17 -07001008.. function:: check_output(args, *, stdin=None, stderr=None, shell=False, \
Alex Gaynor368cf1d2017-05-25 22:28:17 -04001009 cwd=None, encoding=None, errors=None, \
Steve Dower050acae2016-09-06 20:16:17 -07001010 universal_newlines=False, timeout=None)
Gregory P. Smith6e730002015-04-14 16:14:25 -07001011
1012 Run command with arguments and return its output.
1013
1014 If the return code was non-zero it raises a :exc:`CalledProcessError`. The
1015 :exc:`CalledProcessError` object will have the return code in the
1016 :attr:`~CalledProcessError.returncode` attribute and any output in the
1017 :attr:`~CalledProcessError.output` attribute.
1018
1019 This is equivalent to::
1020
1021 run(..., check=True, stdout=PIPE).stdout
1022
Berker Peksagbf1d4b62015-07-25 14:27:07 +03001023 The arguments shown above are merely the most common ones.
1024 The full function signature is largely the same as that of :func:`run` -
1025 most arguments are passed directly through to that interface.
1026 However, explicitly passing ``input=None`` to inherit the parent's
1027 standard input file handle is not supported.
1028
Gregory P. Smith6e730002015-04-14 16:14:25 -07001029 By default, this function will return the data as encoded bytes. The actual
1030 encoding of the output data may depend on the command being invoked, so the
1031 decoding to text will often need to be handled at the application level.
1032
1033 This behaviour may be overridden by setting *universal_newlines* to
1034 ``True`` as described above in :ref:`frequently-used-arguments`.
1035
1036 To also capture standard error in the result, use
1037 ``stderr=subprocess.STDOUT``::
1038
1039 >>> subprocess.check_output(
1040 ... "ls non_existent_file; exit 0",
1041 ... stderr=subprocess.STDOUT,
1042 ... shell=True)
1043 'ls: non_existent_file: No such file or directory\n'
1044
1045 .. versionadded:: 3.1
1046
1047 .. versionchanged:: 3.3
1048 *timeout* was added.
1049
1050 .. versionchanged:: 3.4
Berker Peksagbf1d4b62015-07-25 14:27:07 +03001051 Support for the *input* keyword argument was added.
Brian Curtine6242d72011-04-29 22:17:51 -05001052
Benjamin Petersondcf97b92008-07-02 17:30:14 +00001053.. _subprocess-replacements:
1054
Ezio Melotti402f75d2012-11-08 10:07:10 +02001055Replacing Older Functions with the :mod:`subprocess` Module
1056-----------------------------------------------------------
Georg Brandl116aa622007-08-15 14:28:22 +00001057
Nick Coghlanc29248f2011-11-08 20:49:23 +10001058In this section, "a becomes b" means that b can be used as a replacement for a.
Georg Brandl116aa622007-08-15 14:28:22 +00001059
1060.. note::
1061
Nick Coghlanc29248f2011-11-08 20:49:23 +10001062 All "a" functions in this section fail (more or less) silently if the
1063 executed program cannot be found; the "b" replacements raise :exc:`OSError`
1064 instead.
Georg Brandl116aa622007-08-15 14:28:22 +00001065
Nick Coghlanc29248f2011-11-08 20:49:23 +10001066 In addition, the replacements using :func:`check_output` will fail with a
1067 :exc:`CalledProcessError` if the requested operation produces a non-zero
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +03001068 return code. The output is still available as the
1069 :attr:`~CalledProcessError.output` attribute of the raised exception.
Nick Coghlanc29248f2011-11-08 20:49:23 +10001070
1071In the following examples, we assume that the relevant functions have already
Ezio Melotti402f75d2012-11-08 10:07:10 +02001072been imported from the :mod:`subprocess` module.
Georg Brandl116aa622007-08-15 14:28:22 +00001073
1074
1075Replacing /bin/sh shell backquote
1076^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1077
Martin Panter1050d2d2016-07-26 11:18:21 +02001078.. code-block:: bash
Georg Brandl116aa622007-08-15 14:28:22 +00001079
1080 output=`mycmd myarg`
Georg Brandl116aa622007-08-15 14:28:22 +00001081
Martin Panter1050d2d2016-07-26 11:18:21 +02001082becomes::
1083
1084 output = check_output(["mycmd", "myarg"])
Georg Brandl116aa622007-08-15 14:28:22 +00001085
Benjamin Petersonf10a79a2008-10-11 00:49:57 +00001086Replacing shell pipeline
1087^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +00001088
Martin Panter1050d2d2016-07-26 11:18:21 +02001089.. code-block:: bash
Georg Brandl116aa622007-08-15 14:28:22 +00001090
1091 output=`dmesg | grep hda`
Martin Panter1050d2d2016-07-26 11:18:21 +02001092
1093becomes::
1094
Georg Brandl116aa622007-08-15 14:28:22 +00001095 p1 = Popen(["dmesg"], stdout=PIPE)
1096 p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
Gregory P. Smithe09d2f12011-02-05 21:47:25 +00001097 p1.stdout.close() # Allow p1 to receive a SIGPIPE if p2 exits.
Georg Brandl116aa622007-08-15 14:28:22 +00001098 output = p2.communicate()[0]
1099
Gregory P. Smithe09d2f12011-02-05 21:47:25 +00001100The p1.stdout.close() call after starting the p2 is important in order for p1
1101to receive a SIGPIPE if p2 exits before p1.
Georg Brandl116aa622007-08-15 14:28:22 +00001102
Nick Coghlanc29248f2011-11-08 20:49:23 +10001103Alternatively, for trusted input, the shell's own pipeline support may still
Martin Panter1050d2d2016-07-26 11:18:21 +02001104be used directly:
1105
1106.. code-block:: bash
Nick Coghlanc29248f2011-11-08 20:49:23 +10001107
1108 output=`dmesg | grep hda`
Martin Panter1050d2d2016-07-26 11:18:21 +02001109
1110becomes::
1111
Nick Coghlanc29248f2011-11-08 20:49:23 +10001112 output=check_output("dmesg | grep hda", shell=True)
1113
1114
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001115Replacing :func:`os.system`
1116^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +00001117
1118::
1119
1120 sts = os.system("mycmd" + " myarg")
Nick Coghlanc29248f2011-11-08 20:49:23 +10001121 # becomes
1122 sts = call("mycmd" + " myarg", shell=True)
Georg Brandl116aa622007-08-15 14:28:22 +00001123
1124Notes:
1125
1126* Calling the program through the shell is usually not required.
1127
Georg Brandl116aa622007-08-15 14:28:22 +00001128A more realistic example would look like this::
1129
1130 try:
1131 retcode = call("mycmd" + " myarg", shell=True)
1132 if retcode < 0:
Collin Winterc79461b2007-09-01 23:34:30 +00001133 print("Child was terminated by signal", -retcode, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +00001134 else:
Collin Winterc79461b2007-09-01 23:34:30 +00001135 print("Child returned", retcode, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +00001136 except OSError as e:
Collin Winterc79461b2007-09-01 23:34:30 +00001137 print("Execution failed:", e, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +00001138
1139
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001140Replacing the :func:`os.spawn <os.spawnl>` family
1141^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +00001142
1143P_NOWAIT example::
1144
1145 pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg")
1146 ==>
1147 pid = Popen(["/bin/mycmd", "myarg"]).pid
1148
1149P_WAIT example::
1150
1151 retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg")
1152 ==>
1153 retcode = call(["/bin/mycmd", "myarg"])
1154
1155Vector example::
1156
1157 os.spawnvp(os.P_NOWAIT, path, args)
1158 ==>
1159 Popen([path] + args[1:])
1160
1161Environment example::
1162
1163 os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env)
1164 ==>
1165 Popen(["/bin/mycmd", "myarg"], env={"PATH": "/usr/bin"})
1166
1167
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001168
1169Replacing :func:`os.popen`, :func:`os.popen2`, :func:`os.popen3`
1170^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +00001171
1172::
1173
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001174 (child_stdin, child_stdout) = os.popen2(cmd, mode, bufsize)
Georg Brandl116aa622007-08-15 14:28:22 +00001175 ==>
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001176 p = Popen(cmd, shell=True, bufsize=bufsize,
1177 stdin=PIPE, stdout=PIPE, close_fds=True)
1178 (child_stdin, child_stdout) = (p.stdin, p.stdout)
Georg Brandl116aa622007-08-15 14:28:22 +00001179
1180::
1181
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001182 (child_stdin,
1183 child_stdout,
1184 child_stderr) = os.popen3(cmd, mode, bufsize)
Georg Brandl116aa622007-08-15 14:28:22 +00001185 ==>
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001186 p = Popen(cmd, shell=True, bufsize=bufsize,
1187 stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True)
1188 (child_stdin,
1189 child_stdout,
1190 child_stderr) = (p.stdin, p.stdout, p.stderr)
1191
1192::
1193
1194 (child_stdin, child_stdout_and_stderr) = os.popen4(cmd, mode, bufsize)
1195 ==>
1196 p = Popen(cmd, shell=True, bufsize=bufsize,
1197 stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True)
1198 (child_stdin, child_stdout_and_stderr) = (p.stdin, p.stdout)
1199
1200Return code handling translates as follows::
1201
1202 pipe = os.popen(cmd, 'w')
1203 ...
1204 rc = pipe.close()
Stefan Krahfc9e08d2010-07-14 10:16:11 +00001205 if rc is not None and rc >> 8:
Ezio Melotti985e24d2009-09-13 07:54:02 +00001206 print("There were some errors")
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001207 ==>
R David Murray17227a72015-09-04 10:01:19 -04001208 process = Popen(cmd, stdin=PIPE)
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001209 ...
1210 process.stdin.close()
1211 if process.wait() != 0:
Ezio Melotti985e24d2009-09-13 07:54:02 +00001212 print("There were some errors")
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001213
1214
1215Replacing functions from the :mod:`popen2` module
1216^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1217
1218.. note::
1219
1220 If the cmd argument to popen2 functions is a string, the command is executed
1221 through /bin/sh. If it is a list, the command is directly executed.
1222
1223::
1224
1225 (child_stdout, child_stdin) = popen2.popen2("somestring", bufsize, mode)
1226 ==>
R David Murrayae9d1932014-05-14 10:09:52 -04001227 p = Popen("somestring", shell=True, bufsize=bufsize,
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001228 stdin=PIPE, stdout=PIPE, close_fds=True)
1229 (child_stdout, child_stdin) = (p.stdout, p.stdin)
1230
1231::
1232
1233 (child_stdout, child_stdin) = popen2.popen2(["mycmd", "myarg"], bufsize, mode)
1234 ==>
1235 p = Popen(["mycmd", "myarg"], bufsize=bufsize,
1236 stdin=PIPE, stdout=PIPE, close_fds=True)
1237 (child_stdout, child_stdin) = (p.stdout, p.stdin)
1238
1239:class:`popen2.Popen3` and :class:`popen2.Popen4` basically work as
1240:class:`subprocess.Popen`, except that:
1241
1242* :class:`Popen` raises an exception if the execution fails.
1243
1244* the *capturestderr* argument is replaced with the *stderr* argument.
1245
1246* ``stdin=PIPE`` and ``stdout=PIPE`` must be specified.
1247
1248* popen2 closes all file descriptors by default, but you have to specify
Gregory P. Smithf5604852010-12-13 06:45:02 +00001249 ``close_fds=True`` with :class:`Popen` to guarantee this behavior on
1250 all platforms or past Python versions.
Eli Bendersky046a7642011-04-15 07:23:26 +03001251
Nick Coghlanc29248f2011-11-08 20:49:23 +10001252
Nick Coghlanc29248f2011-11-08 20:49:23 +10001253Legacy Shell Invocation Functions
Nick Coghlan32e4a582011-11-08 21:50:58 +10001254---------------------------------
Nick Coghlanc29248f2011-11-08 20:49:23 +10001255
1256This module also provides the following legacy functions from the 2.x
1257``commands`` module. These operations implicitly invoke the system shell and
1258none of the guarantees described above regarding security and exception
1259handling consistency are valid for these functions.
1260
1261.. function:: getstatusoutput(cmd)
1262
Gregory P. Smith738b7d92017-09-06 17:39:23 -07001263 Return ``(exitcode, output)`` of executing *cmd* in a shell.
Nick Coghlanc29248f2011-11-08 20:49:23 +10001264
Tim Golden60798142013-11-05 12:57:25 +00001265 Execute the string *cmd* in a shell with :meth:`Popen.check_output` and
Gregory P. Smith738b7d92017-09-06 17:39:23 -07001266 return a 2-tuple ``(exitcode, output)``. The locale encoding is used;
Tim Golden60798142013-11-05 12:57:25 +00001267 see the notes on :ref:`frequently-used-arguments` for more details.
Tim Golden3a2abb52013-11-03 18:24:50 +00001268
1269 A trailing newline is stripped from the output.
Gregory P. Smith738b7d92017-09-06 17:39:23 -07001270 The exit code for the command can be interpreted as the return code
1271 of subprocess. Example::
Nick Coghlanc29248f2011-11-08 20:49:23 +10001272
1273 >>> subprocess.getstatusoutput('ls /bin/ls')
1274 (0, '/bin/ls')
1275 >>> subprocess.getstatusoutput('cat /bin/junk')
Gregory P. Smith738b7d92017-09-06 17:39:23 -07001276 (1, 'cat: /bin/junk: No such file or directory')
Nick Coghlanc29248f2011-11-08 20:49:23 +10001277 >>> subprocess.getstatusoutput('/bin/junk')
Gregory P. Smith738b7d92017-09-06 17:39:23 -07001278 (127, 'sh: /bin/junk: not found')
1279 >>> subprocess.getstatusoutput('/bin/kill $$')
1280 (-15, '')
Nick Coghlanc29248f2011-11-08 20:49:23 +10001281
Gregory P. Smith8e0aa052014-05-11 13:28:35 -07001282 Availability: POSIX & Windows
R David Murray95b696a2014-03-07 20:04:17 -05001283
1284 .. versionchanged:: 3.3.4
Gregory P. Smith738b7d92017-09-06 17:39:23 -07001285 Windows support was added.
1286
1287 The function now returns (exitcode, output) instead of (status, output)
1288 as it did in Python 3.3.3 and earlier. See :func:`WEXITSTATUS`.
Nick Coghlanc29248f2011-11-08 20:49:23 +10001289
1290
1291.. function:: getoutput(cmd)
1292
1293 Return output (stdout and stderr) of executing *cmd* in a shell.
1294
1295 Like :func:`getstatusoutput`, except the exit status is ignored and the return
1296 value is a string containing the command's output. Example::
1297
1298 >>> subprocess.getoutput('ls /bin/ls')
1299 '/bin/ls'
1300
Gregory P. Smith8e0aa052014-05-11 13:28:35 -07001301 Availability: POSIX & Windows
R David Murray95b696a2014-03-07 20:04:17 -05001302
1303 .. versionchanged:: 3.3.4
1304 Windows support added
Nick Coghlanc29248f2011-11-08 20:49:23 +10001305
Nick Coghlan32e4a582011-11-08 21:50:58 +10001306
Eli Bendersky046a7642011-04-15 07:23:26 +03001307Notes
1308-----
1309
1310.. _converting-argument-sequence:
1311
1312Converting an argument sequence to a string on Windows
1313^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1314
1315On Windows, an *args* sequence is converted to a string that can be parsed
1316using the following rules (which correspond to the rules used by the MS C
1317runtime):
1318
13191. Arguments are delimited by white space, which is either a
1320 space or a tab.
1321
13222. A string surrounded by double quotation marks is
1323 interpreted as a single argument, regardless of white space
1324 contained within. A quoted string can be embedded in an
1325 argument.
1326
13273. A double quotation mark preceded by a backslash is
1328 interpreted as a literal double quotation mark.
1329
13304. Backslashes are interpreted literally, unless they
1331 immediately precede a double quotation mark.
1332
13335. If backslashes immediately precede a double quotation mark,
1334 every pair of backslashes is interpreted as a literal
1335 backslash. If the number of backslashes is odd, the last
1336 backslash escapes the next double quotation mark as
1337 described in rule 3.
1338
Eli Benderskyd2112312011-04-15 07:26:28 +03001339
Éric Araujo9bce3112011-07-27 18:29:31 +02001340.. seealso::
1341
1342 :mod:`shlex`
1343 Module which provides function to parse and escape command lines.