blob: 25f267cf8305a8fe62e6070ab48dd213d4c9f9e5 [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,\
Andriy Maletsky22d131a2018-08-09 23:01:54 +030041 capture_output=False, shell=False, cwd=None, timeout=None, \
Jakub Stasiak7432f092018-11-12 04:40:42 +010042 check=False, encoding=None, errors=None, text=None, env=None, \
43 universal_newlines=None)
Nick Coghlanc29248f2011-11-08 20:49:23 +100044
45 Run the command described by *args*. Wait for command to complete, then
Gregory P. Smith6e730002015-04-14 16:14:25 -070046 return a :class:`CompletedProcess` instance.
Nick Coghlanc29248f2011-11-08 20:49:23 +100047
48 The arguments shown above are merely the most common ones, described below
Nick Coghlan217f05b2011-11-08 22:11:21 +100049 in :ref:`frequently-used-arguments` (hence the use of keyword-only notation
50 in the abbreviated signature). The full function signature is largely the
Bo Baylesce0f33d2018-01-30 00:40:39 -060051 same as that of the :class:`Popen` constructor - most of the arguments to
52 this function are passed through to that interface. (*timeout*, *input*,
53 *check*, and *capture_output* are not.)
Nick Coghlan217f05b2011-11-08 22:11:21 +100054
Bo Baylesce0f33d2018-01-30 00:40:39 -060055 If *capture_output* is true, stdout and stderr will be captured.
56 When used, the internal :class:`Popen` object is automatically created with
57 ``stdout=PIPE`` and ``stderr=PIPE``. The *stdout* and *stderr* arguments may
58 not be used as well.
Nick Coghlanc29248f2011-11-08 20:49:23 +100059
Gregory P. Smith6e730002015-04-14 16:14:25 -070060 The *timeout* argument is passed to :meth:`Popen.communicate`. If the timeout
61 expires, the child process will be killed and waited for. The
Nick Coghlan217f05b2011-11-08 22:11:21 +100062 :exc:`TimeoutExpired` exception will be re-raised after the child process
63 has terminated.
Nick Coghlanc29248f2011-11-08 20:49:23 +100064
Serhiy Storchakafcd9f222013-04-22 20:20:54 +030065 The *input* argument is passed to :meth:`Popen.communicate` and thus to the
66 subprocess's stdin. If used it must be a byte sequence, or a string if
andyclegg7fed7bd2017-10-23 03:01:19 +010067 *encoding* or *errors* is specified or *text* is true. When
Steve Dower050acae2016-09-06 20:16:17 -070068 used, the internal :class:`Popen` object is automatically created with
69 ``stdin=PIPE``, and the *stdin* argument may not be used as well.
Serhiy Storchakafcd9f222013-04-22 20:20:54 +030070
Serhiy Storchaka4adf01c2016-10-19 18:30:05 +030071 If *check* is true, and the process exits with a non-zero exit code, a
Gregory P. Smith6e730002015-04-14 16:14:25 -070072 :exc:`CalledProcessError` exception will be raised. Attributes of that
73 exception hold the arguments, the exit code, and stdout and stderr if they
74 were captured.
75
andyclegg7fed7bd2017-10-23 03:01:19 +010076 If *encoding* or *errors* are specified, or *text* is true,
Steve Dower050acae2016-09-06 20:16:17 -070077 file objects for stdin, stdout and stderr are opened in text mode using the
78 specified *encoding* and *errors* or the :class:`io.TextIOWrapper` default.
andyclegg7fed7bd2017-10-23 03:01:19 +010079 The *universal_newlines* argument is equivalent to *text* and is provided
80 for backwards compatibility. By default, file objects are opened in binary mode.
Steve Dower050acae2016-09-06 20:16:17 -070081
Tobias Kunzeaf1ec972018-06-05 13:41:42 +020082 If *env* is not ``None``, it must be a mapping that defines the environment
83 variables for the new process; these are used instead of the default
84 behavior of inheriting the current process' environment. It is passed directly
85 to :class:`Popen`.
86
Nick Coghlanc29248f2011-11-08 20:49:23 +100087 Examples::
88
Gregory P. Smith6e730002015-04-14 16:14:25 -070089 >>> subprocess.run(["ls", "-l"]) # doesn't capture output
90 CompletedProcess(args=['ls', '-l'], returncode=0)
Nick Coghlanc29248f2011-11-08 20:49:23 +100091
Gregory P. Smith6e730002015-04-14 16:14:25 -070092 >>> subprocess.run("exit 1", shell=True, check=True)
Nick Coghlanc29248f2011-11-08 20:49:23 +100093 Traceback (most recent call last):
Gregory P. Smith6e730002015-04-14 16:14:25 -070094 ...
Nick Coghlanc29248f2011-11-08 20:49:23 +100095 subprocess.CalledProcessError: Command 'exit 1' returned non-zero exit status 1
96
Bo Baylesce0f33d2018-01-30 00:40:39 -060097 >>> subprocess.run(["ls", "-l", "/dev/null"], capture_output=True)
Gregory P. Smith6e730002015-04-14 16:14:25 -070098 CompletedProcess(args=['ls', '-l', '/dev/null'], returncode=0,
Bo Baylesce0f33d2018-01-30 00:40:39 -060099 stdout=b'crw-rw-rw- 1 root root 1, 3 Jan 23 16:23 /dev/null\n', stderr=b'')
Nick Coghlanc29248f2011-11-08 20:49:23 +1000100
Gregory P. Smith6e730002015-04-14 16:14:25 -0700101 .. versionadded:: 3.5
Nick Coghlanc29248f2011-11-08 20:49:23 +1000102
Steve Dower050acae2016-09-06 20:16:17 -0700103 .. versionchanged:: 3.6
104
105 Added *encoding* and *errors* parameters
106
andyclegg7fed7bd2017-10-23 03:01:19 +0100107 .. versionchanged:: 3.7
108
Bo Baylesce0f33d2018-01-30 00:40:39 -0600109 Added the *text* parameter, as a more understandable alias of *universal_newlines*.
110 Added the *capture_output* parameter.
andyclegg7fed7bd2017-10-23 03:01:19 +0100111
Gregory P. Smith6e730002015-04-14 16:14:25 -0700112.. class:: CompletedProcess
Nick Coghlanc29248f2011-11-08 20:49:23 +1000113
Gregory P. Smith6e730002015-04-14 16:14:25 -0700114 The return value from :func:`run`, representing a process that has finished.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000115
Gregory P. Smith6e730002015-04-14 16:14:25 -0700116 .. attribute:: args
Nick Coghlanc29248f2011-11-08 20:49:23 +1000117
Gregory P. Smith6e730002015-04-14 16:14:25 -0700118 The arguments used to launch the process. This may be a list or a string.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000119
Gregory P. Smith6e730002015-04-14 16:14:25 -0700120 .. attribute:: returncode
Serhiy Storchakafcd9f222013-04-22 20:20:54 +0300121
Gregory P. Smith6e730002015-04-14 16:14:25 -0700122 Exit status of the child process. Typically, an exit status of 0 indicates
123 that it ran successfully.
Nick Coghlan217f05b2011-11-08 22:11:21 +1000124
Gregory P. Smith6e730002015-04-14 16:14:25 -0700125 A negative value ``-N`` indicates that the child was terminated by signal
126 ``N`` (POSIX only).
127
128 .. attribute:: stdout
129
130 Captured stdout from the child process. A bytes sequence, or a string if
andyclegg7fed7bd2017-10-23 03:01:19 +0100131 :func:`run` was called with an encoding, errors, or text=True.
132 ``None`` if stdout was not captured.
Gregory P. Smith6e730002015-04-14 16:14:25 -0700133
134 If you ran the process with ``stderr=subprocess.STDOUT``, stdout and
135 stderr will be combined in this attribute, and :attr:`stderr` will be
Serhiy Storchakaecf41da2016-10-19 16:29:26 +0300136 ``None``.
Gregory P. Smith6e730002015-04-14 16:14:25 -0700137
138 .. attribute:: stderr
139
140 Captured stderr from the child process. A bytes sequence, or a string if
andyclegg7fed7bd2017-10-23 03:01:19 +0100141 :func:`run` was called with an encoding, errors, or text=True.
142 ``None`` if stderr was not captured.
Gregory P. Smith6e730002015-04-14 16:14:25 -0700143
144 .. method:: check_returncode()
145
146 If :attr:`returncode` is non-zero, raise a :exc:`CalledProcessError`.
147
148 .. versionadded:: 3.5
Nick Coghlan217f05b2011-11-08 22:11:21 +1000149
150.. data:: DEVNULL
151
152 Special value that can be used as the *stdin*, *stdout* or *stderr* argument
153 to :class:`Popen` and indicates that the special file :data:`os.devnull`
154 will be used.
155
156 .. versionadded:: 3.3
157
Nick Coghlanc29248f2011-11-08 20:49:23 +1000158
159.. data:: PIPE
160
161 Special value that can be used as the *stdin*, *stdout* or *stderr* argument
162 to :class:`Popen` and indicates that a pipe to the standard stream should be
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700163 opened. Most useful with :meth:`Popen.communicate`.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000164
165
166.. data:: STDOUT
167
168 Special value that can be used as the *stderr* argument to :class:`Popen` and
169 indicates that standard error should go into the same handle as standard
170 output.
171
172
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300173.. exception:: SubprocessError
174
175 Base class for all other exceptions from this module.
176
177 .. versionadded:: 3.3
178
179
180.. exception:: TimeoutExpired
181
182 Subclass of :exc:`SubprocessError`, raised when a timeout expires
183 while waiting for a child process.
184
185 .. attribute:: cmd
186
187 Command that was used to spawn the child process.
188
189 .. attribute:: timeout
190
191 Timeout in seconds.
192
193 .. attribute:: output
194
Gregory P. Smith6e730002015-04-14 16:14:25 -0700195 Output of the child process if it was captured by :func:`run` or
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300196 :func:`check_output`. Otherwise, ``None``.
197
Gregory P. Smith6e730002015-04-14 16:14:25 -0700198 .. attribute:: stdout
199
200 Alias for output, for symmetry with :attr:`stderr`.
201
202 .. attribute:: stderr
203
204 Stderr output of the child process if it was captured by :func:`run`.
205 Otherwise, ``None``.
206
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300207 .. versionadded:: 3.3
208
Gregory P. Smith6e730002015-04-14 16:14:25 -0700209 .. versionchanged:: 3.5
210 *stdout* and *stderr* attributes added
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300211
212.. exception:: CalledProcessError
213
214 Subclass of :exc:`SubprocessError`, raised when a process run by
215 :func:`check_call` or :func:`check_output` returns a non-zero exit status.
216
217 .. attribute:: returncode
218
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)583a1d62016-06-03 00:31:21 +0000219 Exit status of the child process. If the process exited due to a
220 signal, this will be the negative signal number.
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300221
222 .. attribute:: cmd
223
224 Command that was used to spawn the child process.
225
226 .. attribute:: output
227
Gregory P. Smith6e730002015-04-14 16:14:25 -0700228 Output of the child process if it was captured by :func:`run` or
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300229 :func:`check_output`. Otherwise, ``None``.
230
Gregory P. Smith6e730002015-04-14 16:14:25 -0700231 .. attribute:: stdout
232
233 Alias for output, for symmetry with :attr:`stderr`.
234
235 .. attribute:: stderr
236
237 Stderr output of the child process if it was captured by :func:`run`.
238 Otherwise, ``None``.
239
240 .. versionchanged:: 3.5
241 *stdout* and *stderr* attributes added
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300242
243
Nick Coghlanc29248f2011-11-08 20:49:23 +1000244.. _frequently-used-arguments:
245
246Frequently Used Arguments
247^^^^^^^^^^^^^^^^^^^^^^^^^
248
249To support a wide variety of use cases, the :class:`Popen` constructor (and
250the convenience functions) accept a large number of optional arguments. For
251most typical use cases, many of these arguments can be safely left at their
252default values. The arguments that are most commonly needed are:
253
254 *args* is required for all calls and should be a string, or a sequence of
255 program arguments. Providing a sequence of arguments is generally
256 preferred, as it allows the module to take care of any required escaping
257 and quoting of arguments (e.g. to permit spaces in file names). If passing
258 a single string, either *shell* must be :const:`True` (see below) or else
259 the string must simply name the program to be executed without specifying
260 any arguments.
261
262 *stdin*, *stdout* and *stderr* specify the executed program's standard input,
263 standard output and standard error file handles, respectively. Valid values
Nick Coghlan217f05b2011-11-08 22:11:21 +1000264 are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive
265 integer), an existing file object, and ``None``. :data:`PIPE` indicates
266 that a new pipe to the child should be created. :data:`DEVNULL` indicates
267 that the special file :data:`os.devnull` will be used. With the default
268 settings of ``None``, no redirection will occur; the child's file handles
269 will be inherited from the parent. Additionally, *stderr* can be
270 :data:`STDOUT`, which indicates that the stderr data from the child
271 process should be captured into the same file handle as for *stdout*.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000272
R David Murray1b00f252012-08-15 10:43:58 -0400273 .. index::
274 single: universal newlines; subprocess module
275
Pablo Galindoe14c0102018-02-11 20:58:23 +0000276 If *encoding* or *errors* are specified, or *text* (also known as
277 *universal_newlines*) is true,
Steve Dower050acae2016-09-06 20:16:17 -0700278 the file objects *stdin*, *stdout* and *stderr* will be opened in text
279 mode using the *encoding* and *errors* specified in the call or the
280 defaults for :class:`io.TextIOWrapper`.
Ronald Oussoren385521c2013-07-07 09:26:45 +0200281
Steve Dower050acae2016-09-06 20:16:17 -0700282 For *stdin*, line ending characters ``'\n'`` in the input will be converted
283 to the default line separator :data:`os.linesep`. For *stdout* and *stderr*,
284 all line endings in the output will be converted to ``'\n'``. For more
285 information see the documentation of the :class:`io.TextIOWrapper` class
286 when the *newline* argument to its constructor is ``None``.
287
288 If text mode is not used, *stdin*, *stdout* and *stderr* will be opened as
289 binary streams. No encoding or line ending conversion is performed.
290
291 .. versionadded:: 3.6
292 Added *encoding* and *errors* parameters.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000293
Pablo Galindoe14c0102018-02-11 20:58:23 +0000294 .. versionadded:: 3.7
295 Added the *text* parameter as an alias for *universal_newlines*.
296
Andrew Svetlov50be4522012-08-13 22:09:04 +0300297 .. note::
298
Gregory P. Smith1f8a40b2013-03-20 18:32:03 -0700299 The newlines attribute of the file objects :attr:`Popen.stdin`,
300 :attr:`Popen.stdout` and :attr:`Popen.stderr` are not updated by
301 the :meth:`Popen.communicate` method.
Andrew Svetlov50be4522012-08-13 22:09:04 +0300302
303 If *shell* is ``True``, the specified command will be executed through
Ezio Melotti186d5232012-09-15 08:34:08 +0300304 the shell. This can be useful if you are using Python primarily for the
Nick Coghlanc29248f2011-11-08 20:49:23 +1000305 enhanced control flow it offers over most system shells and still want
Ezio Melotti186d5232012-09-15 08:34:08 +0300306 convenient access to other shell features such as shell pipes, filename
307 wildcards, environment variable expansion, and expansion of ``~`` to a
308 user's home directory. However, note that Python itself offers
309 implementations of many shell-like features (in particular, :mod:`glob`,
310 :mod:`fnmatch`, :func:`os.walk`, :func:`os.path.expandvars`,
311 :func:`os.path.expanduser`, and :mod:`shutil`).
Nick Coghlanc29248f2011-11-08 20:49:23 +1000312
Andrew Svetlov4805fa82012-08-13 22:11:14 +0300313 .. versionchanged:: 3.3
314 When *universal_newlines* is ``True``, the class uses the encoding
315 :func:`locale.getpreferredencoding(False) <locale.getpreferredencoding>`
316 instead of ``locale.getpreferredencoding()``. See the
317 :class:`io.TextIOWrapper` class for more information on this change.
318
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700319 .. note::
Nick Coghlanc29248f2011-11-08 20:49:23 +1000320
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700321 Read the `Security Considerations`_ section before using ``shell=True``.
Andrew Svetlovc2415eb2012-10-28 11:42:26 +0200322
Nick Coghlanc29248f2011-11-08 20:49:23 +1000323These options, along with all of the other options, are described in more
324detail in the :class:`Popen` constructor documentation.
325
326
Sandro Tosi1526ad12011-12-25 11:27:37 +0100327Popen Constructor
Sandro Tosi3e6c8142011-12-25 17:14:11 +0100328^^^^^^^^^^^^^^^^^
Nick Coghlanc29248f2011-11-08 20:49:23 +1000329
330The underlying process creation and management in this module is handled by
331the :class:`Popen` class. It offers a lot of flexibility so that developers
332are able to handle the less common cases not covered by the convenience
333functions.
Georg Brandl116aa622007-08-15 14:28:22 +0000334
335
Gregory P. Smitha1ed5392013-03-23 11:44:25 -0700336.. class:: Popen(args, bufsize=-1, executable=None, stdin=None, stdout=None, \
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700337 stderr=None, preexec_fn=None, close_fds=True, shell=False, \
Jakub Stasiak7432f092018-11-12 04:40:42 +0100338 cwd=None, env=None, universal_newlines=None, \
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700339 startupinfo=None, creationflags=0, restore_signals=True, \
Steve Dower050acae2016-09-06 20:16:17 -0700340 start_new_session=False, pass_fds=(), *, \
Pablo Galindoe14c0102018-02-11 20:58:23 +0000341 encoding=None, errors=None, text=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000342
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700343 Execute a child program in a new process. On POSIX, the class uses
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700344 :meth:`os.execvp`-like behavior to execute the child program. On Windows,
345 the class uses the Windows ``CreateProcess()`` function. The arguments to
346 :class:`Popen` are as follows.
Georg Brandl116aa622007-08-15 14:28:22 +0000347
Serhiy Storchakabe50a7b2018-02-28 01:03:46 +0200348 *args* should be a sequence of program arguments or else a single string.
349 By default, the program to execute is the first item in *args* if *args* is
350 a sequence. If *args* is a string, the interpretation is
351 platform-dependent and described below. See the *shell* and *executable*
352 arguments for additional differences from the default behavior. Unless
353 otherwise stated, it is recommended to pass *args* as a sequence.
Georg Brandl116aa622007-08-15 14:28:22 +0000354
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700355 On POSIX, if *args* is a string, the string is interpreted as the name or
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700356 path of the program to execute. However, this can only be done if not
357 passing arguments to the program.
Georg Brandl116aa622007-08-15 14:28:22 +0000358
R. David Murray5973e4d2010-02-04 16:41:57 +0000359 .. note::
360
361 :meth:`shlex.split` can be useful when determining the correct
362 tokenization for *args*, especially in complex cases::
363
364 >>> import shlex, subprocess
R. David Murray73bc75b2010-02-05 16:25:12 +0000365 >>> command_line = input()
R. David Murray5973e4d2010-02-04 16:41:57 +0000366 /bin/vikings -input eggs.txt -output "spam spam.txt" -cmd "echo '$MONEY'"
367 >>> args = shlex.split(command_line)
368 >>> print(args)
369 ['/bin/vikings', '-input', 'eggs.txt', '-output', 'spam spam.txt', '-cmd', "echo '$MONEY'"]
370 >>> p = subprocess.Popen(args) # Success!
371
372 Note in particular that options (such as *-input*) and arguments (such
373 as *eggs.txt*) that are separated by whitespace in the shell go in separate
374 list elements, while arguments that need quoting or backslash escaping when
375 used in the shell (such as filenames containing spaces or the *echo* command
376 shown above) are single list elements.
377
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700378 On Windows, if *args* is a sequence, it will be converted to a string in a
379 manner described in :ref:`converting-argument-sequence`. This is because
380 the underlying ``CreateProcess()`` operates on strings.
Chris Jerdonek470ee392012-10-08 23:06:57 -0700381
Serhiy Storchakaa97cd2e2016-10-19 16:43:42 +0300382 The *shell* argument (which defaults to ``False``) specifies whether to use
383 the shell as the program to execute. If *shell* is ``True``, it is
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700384 recommended to pass *args* as a string rather than as a sequence.
Chris Jerdonek470ee392012-10-08 23:06:57 -0700385
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700386 On POSIX with ``shell=True``, the shell defaults to :file:`/bin/sh`. If
Chris Jerdonek470ee392012-10-08 23:06:57 -0700387 *args* is a string, the string specifies the command
388 to execute through the shell. This means that the string must be
R. David Murray5973e4d2010-02-04 16:41:57 +0000389 formatted exactly as it would be when typed at the shell prompt. This
390 includes, for example, quoting or backslash escaping filenames with spaces in
391 them. If *args* is a sequence, the first item specifies the command string, and
392 any additional items will be treated as additional arguments to the shell
Chris Jerdonek470ee392012-10-08 23:06:57 -0700393 itself. That is to say, :class:`Popen` does the equivalent of::
R. David Murray5973e4d2010-02-04 16:41:57 +0000394
395 Popen(['/bin/sh', '-c', args[0], args[1], ...])
Georg Brandl116aa622007-08-15 14:28:22 +0000396
Chris Jerdonek470ee392012-10-08 23:06:57 -0700397 On Windows with ``shell=True``, the :envvar:`COMSPEC` environment variable
398 specifies the default shell. The only time you need to specify
399 ``shell=True`` on Windows is when the command you wish to execute is built
400 into the shell (e.g. :command:`dir` or :command:`copy`). You do not need
401 ``shell=True`` to run a batch file or console-based executable.
Georg Brandl116aa622007-08-15 14:28:22 +0000402
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700403 .. note::
Chris Jerdonekcc32a682012-10-10 22:52:22 -0700404
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700405 Read the `Security Considerations`_ section before using ``shell=True``.
Chris Jerdonekcc32a682012-10-10 22:52:22 -0700406
Antoine Pitrouafe8d062014-09-21 21:10:56 +0200407 *bufsize* will be supplied as the corresponding argument to the
408 :func:`open` function when creating the stdin/stdout/stderr pipe
409 file objects:
410
411 - :const:`0` means unbuffered (read and write are one
412 system call and can return short)
413 - :const:`1` means line buffered
414 (only usable if ``universal_newlines=True`` i.e., in a text mode)
415 - any other positive value means use a buffer of approximately that
416 size
417 - negative bufsize (the default) means the system default of
418 io.DEFAULT_BUFFER_SIZE will be used.
Georg Brandl116aa622007-08-15 14:28:22 +0000419
Georg Brandl37b70bb2013-11-25 08:48:37 +0100420 .. versionchanged:: 3.3.1
Gregory P. Smitha1ed5392013-03-23 11:44:25 -0700421 *bufsize* now defaults to -1 to enable buffering by default to match the
Georg Brandl37b70bb2013-11-25 08:48:37 +0100422 behavior that most code expects. In versions prior to Python 3.2.4 and
423 3.3.1 it incorrectly defaulted to :const:`0` which was unbuffered
424 and allowed short reads. This was unintentional and did not match the
425 behavior of Python 2 as most code expected.
Antoine Pitrou4b876202010-06-02 17:10:49 +0000426
Chris Jerdonek470ee392012-10-08 23:06:57 -0700427 The *executable* argument specifies a replacement program to execute. It
428 is very seldom needed. When ``shell=False``, *executable* replaces the
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700429 program to execute specified by *args*. However, the original *args* is
430 still passed to the program. Most programs treat the program specified
431 by *args* as the command name, which can then be different from the program
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700432 actually executed. On POSIX, the *args* name
Chris Jerdonek470ee392012-10-08 23:06:57 -0700433 becomes the display name for the executable in utilities such as
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700434 :program:`ps`. If ``shell=True``, on POSIX the *executable* argument
Chris Jerdonek470ee392012-10-08 23:06:57 -0700435 specifies a replacement shell for the default :file:`/bin/sh`.
Georg Brandl116aa622007-08-15 14:28:22 +0000436
Nick Coghlanc29248f2011-11-08 20:49:23 +1000437 *stdin*, *stdout* and *stderr* specify the executed program's standard input,
Georg Brandlaf265f42008-12-07 15:06:20 +0000438 standard output and standard error file handles, respectively. Valid values
Ross Lagerwallba102ec2011-03-16 18:40:25 +0200439 are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive
440 integer), an existing :term:`file object`, and ``None``. :data:`PIPE`
441 indicates that a new pipe to the child should be created. :data:`DEVNULL`
Nick Coghlan217f05b2011-11-08 22:11:21 +1000442 indicates that the special file :data:`os.devnull` will be used. With the
443 default settings of ``None``, no redirection will occur; the child's file
444 handles will be inherited from the parent. Additionally, *stderr* can be
445 :data:`STDOUT`, which indicates that the stderr data from the applications
446 should be captured into the same file handle as for stdout.
Georg Brandl116aa622007-08-15 14:28:22 +0000447
448 If *preexec_fn* is set to a callable object, this object will be called in the
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000449 child process just before the child is executed.
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700450 (POSIX only)
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000451
452 .. warning::
453
454 The *preexec_fn* parameter is not safe to use in the presence of threads
455 in your application. The child process could deadlock before exec is
456 called.
457 If you must use it, keep it trivial! Minimize the number of libraries
458 you call into.
459
460 .. note::
461
462 If you need to modify the environment for the child use the *env*
463 parameter rather than doing it in a *preexec_fn*.
464 The *start_new_session* parameter can take the place of a previously
465 common use of *preexec_fn* to call os.setsid() in the child.
Georg Brandl116aa622007-08-15 14:28:22 +0000466
467 If *close_fds* is true, all file descriptors except :const:`0`, :const:`1` and
Gregory P. Smithdfb6e542018-03-25 10:27:59 -0700468 :const:`2` will be closed before the child process is executed. Otherwise
469 when *close_fds* is false, file descriptors obey their inheritable flag
470 as described in :ref:`fd_inheritance`.
471
Gregory P. Smithd23047b2010-12-04 09:10:44 +0000472 On Windows, if *close_fds* is true then no handles will be inherited by the
Segev Finerb2a60832017-12-18 11:28:19 +0200473 child process unless explicitly passed in the ``handle_list`` element of
474 :attr:`STARTUPINFO.lpAttributeList`, or by standard handle redirection.
Georg Brandl116aa622007-08-15 14:28:22 +0000475
Gregory P. Smith8edd99d2010-12-14 13:43:30 +0000476 .. versionchanged:: 3.2
477 The default for *close_fds* was changed from :const:`False` to
478 what is described above.
479
Segev Finerb2a60832017-12-18 11:28:19 +0200480 .. versionchanged:: 3.7
481 On Windows the default for *close_fds* was changed from :const:`False` to
482 :const:`True` when redirecting the standard handles. It's now possible to
483 set *close_fds* to :const:`True` when redirecting the standard handles.
484
Gregory P. Smith8edd99d2010-12-14 13:43:30 +0000485 *pass_fds* is an optional sequence of file descriptors to keep open
486 between the parent and child. Providing any *pass_fds* forces
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700487 *close_fds* to be :const:`True`. (POSIX only)
Gregory P. Smith8edd99d2010-12-14 13:43:30 +0000488
Sergey Fedoseevf1202882018-07-06 05:01:16 +0500489 .. versionchanged:: 3.2
Gregory P. Smith8edd99d2010-12-14 13:43:30 +0000490 The *pass_fds* parameter was added.
Georg Brandl116aa622007-08-15 14:28:22 +0000491
Chris Jerdonekec3ea942012-09-30 00:10:28 -0700492 If *cwd* is not ``None``, the function changes the working directory to
Sayan Chowdhuryd5c11f72017-02-26 22:36:10 +0530493 *cwd* before executing the child. *cwd* can be a :class:`str` and
494 :term:`path-like <path-like object>` object. In particular, the function
495 looks for *executable* (or for the first item in *args*) relative to *cwd*
496 if the executable path is a relative path.
497
498 .. versionchanged:: 3.6
499 *cwd* parameter accepts a :term:`path-like object`.
Georg Brandl116aa622007-08-15 14:28:22 +0000500
Serhiy Storchakafbc1c262013-11-29 12:17:13 +0200501 If *restore_signals* is true (the default) all signals that Python has set to
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000502 SIG_IGN are restored to SIG_DFL in the child process before the exec.
503 Currently this includes the SIGPIPE, SIGXFZ and SIGXFSZ signals.
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700504 (POSIX only)
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000505
506 .. versionchanged:: 3.2
507 *restore_signals* was added.
508
Serhiy Storchakafbc1c262013-11-29 12:17:13 +0200509 If *start_new_session* is true the setsid() system call will be made in the
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700510 child process prior to the execution of the subprocess. (POSIX only)
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000511
512 .. versionchanged:: 3.2
513 *start_new_session* was added.
514
Christian Heimesa342c012008-04-20 21:01:16 +0000515 If *env* is not ``None``, it must be a mapping that defines the environment
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000516 variables for the new process; these are used instead of the default
517 behavior of inheriting the current process' environment.
Georg Brandl116aa622007-08-15 14:28:22 +0000518
R. David Murray1055e892009-04-16 18:15:32 +0000519 .. note::
R. David Murrayf4ac1492009-04-15 22:35:15 +0000520
Georg Brandl2708f3a2009-12-20 14:38:23 +0000521 If specified, *env* must provide any variables required for the program to
522 execute. On Windows, in order to run a `side-by-side assembly`_ the
523 specified *env* **must** include a valid :envvar:`SystemRoot`.
R. David Murrayf4ac1492009-04-15 22:35:15 +0000524
Georg Brandl5d941342016-02-26 19:37:12 +0100525 .. _side-by-side assembly: https://en.wikipedia.org/wiki/Side-by-Side_Assembly
R. David Murray1055e892009-04-16 18:15:32 +0000526
Pablo Galindoe14c0102018-02-11 20:58:23 +0000527 If *encoding* or *errors* are specified, or *text* is true, the file objects
528 *stdin*, *stdout* and *stderr* are opened in text mode with the specified
529 encoding and *errors*, as described above in :ref:`frequently-used-arguments`.
530 The *universal_newlines* argument is equivalent to *text* and is provided
531 for backwards compatibility. By default, file objects are opened in binary mode.
Steve Dower050acae2016-09-06 20:16:17 -0700532
533 .. versionadded:: 3.6
534 *encoding* and *errors* were added.
Georg Brandl116aa622007-08-15 14:28:22 +0000535
Pablo Galindoe14c0102018-02-11 20:58:23 +0000536 .. versionadded:: 3.7
537 *text* was added as a more readable alias for *universal_newlines*.
538
Brian Curtine6242d72011-04-29 22:17:51 -0500539 If given, *startupinfo* will be a :class:`STARTUPINFO` object, which is
540 passed to the underlying ``CreateProcess`` function.
Jamesb5d9e082017-11-08 14:18:59 +0000541 *creationflags*, if given, can be one or more of the following flags:
542
543 * :data:`CREATE_NEW_CONSOLE`
544 * :data:`CREATE_NEW_PROCESS_GROUP`
545 * :data:`ABOVE_NORMAL_PRIORITY_CLASS`
546 * :data:`BELOW_NORMAL_PRIORITY_CLASS`
547 * :data:`HIGH_PRIORITY_CLASS`
548 * :data:`IDLE_PRIORITY_CLASS`
549 * :data:`NORMAL_PRIORITY_CLASS`
550 * :data:`REALTIME_PRIORITY_CLASS`
551 * :data:`CREATE_NO_WINDOW`
552 * :data:`DETACHED_PROCESS`
553 * :data:`CREATE_DEFAULT_ERROR_MODE`
554 * :data:`CREATE_BREAKAWAY_FROM_JOB`
Georg Brandl116aa622007-08-15 14:28:22 +0000555
Gregory P. Smith6b657452011-05-11 21:42:08 -0700556 Popen objects are supported as context managers via the :keyword:`with` statement:
557 on exit, standard file descriptors are closed, and the process is waited for.
Brian Curtin79cdb662010-12-03 02:46:02 +0000558 ::
559
560 with Popen(["ifconfig"], stdout=PIPE) as proc:
561 log.write(proc.stdout.read())
562
563 .. versionchanged:: 3.2
564 Added context manager support.
565
Victor Stinner5a48e212016-05-20 12:11:15 +0200566 .. versionchanged:: 3.6
567 Popen destructor now emits a :exc:`ResourceWarning` warning if the child
568 process is still running.
569
Georg Brandl116aa622007-08-15 14:28:22 +0000570
Georg Brandl116aa622007-08-15 14:28:22 +0000571Exceptions
572^^^^^^^^^^
573
574Exceptions raised in the child process, before the new program has started to
575execute, will be re-raised in the parent. Additionally, the exception object
576will have one extra attribute called :attr:`child_traceback`, which is a string
Georg Brandl81675612010-08-26 14:30:56 +0000577containing traceback information from the child's point of view.
Georg Brandl116aa622007-08-15 14:28:22 +0000578
579The most common exception raised is :exc:`OSError`. This occurs, for example,
580when trying to execute a non-existent file. Applications should prepare for
581:exc:`OSError` exceptions.
582
583A :exc:`ValueError` will be raised if :class:`Popen` is called with invalid
584arguments.
585
Nick Coghlanc29248f2011-11-08 20:49:23 +1000586:func:`check_call` and :func:`check_output` will raise
587:exc:`CalledProcessError` if the called process returns a non-zero return
588code.
Georg Brandl116aa622007-08-15 14:28:22 +0000589
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400590All of the functions and methods that accept a *timeout* parameter, such as
591:func:`call` and :meth:`Popen.communicate` will raise :exc:`TimeoutExpired` if
592the timeout expires before the process exits.
593
Ronald Oussorenc1577902011-03-16 10:03:10 -0400594Exceptions defined in this module all inherit from :exc:`SubprocessError`.
Gregory P. Smith54d412e2011-03-14 14:08:43 -0400595
596 .. versionadded:: 3.3
597 The :exc:`SubprocessError` base class was added.
598
Georg Brandl116aa622007-08-15 14:28:22 +0000599
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700600Security Considerations
601-----------------------
Georg Brandl116aa622007-08-15 14:28:22 +0000602
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700603Unlike some other popen functions, this implementation will never
604implicitly call a system shell. This means that all characters,
605including shell metacharacters, can safely be passed to child processes.
606If the shell is invoked explicitly, via ``shell=True``, it is the application's
607responsibility to ensure that all whitespace and metacharacters are
608quoted appropriately to avoid
Georg Brandl5d941342016-02-26 19:37:12 +0100609`shell injection <https://en.wikipedia.org/wiki/Shell_injection#Shell_injection>`_
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700610vulnerabilities.
611
612When using ``shell=True``, the :func:`shlex.quote` function can be
613used to properly escape whitespace and shell metacharacters in strings
614that are going to be used to construct shell commands.
Georg Brandl116aa622007-08-15 14:28:22 +0000615
616
617Popen Objects
618-------------
619
620Instances of the :class:`Popen` class have the following methods:
621
622
623.. method:: Popen.poll()
624
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +0300625 Check if child process has terminated. Set and return
Ivan Chernoff006617f2017-08-29 17:46:24 +0300626 :attr:`~Popen.returncode` attribute. Otherwise, returns ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000627
628
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400629.. method:: Popen.wait(timeout=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000630
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +0300631 Wait for child process to terminate. Set and return
632 :attr:`~Popen.returncode` attribute.
Georg Brandl116aa622007-08-15 14:28:22 +0000633
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400634 If the process does not terminate after *timeout* seconds, raise a
635 :exc:`TimeoutExpired` exception. It is safe to catch this exception and
636 retry the wait.
637
Victor Stinner07171242014-02-24 13:18:47 +0100638 .. note::
639
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700640 This will deadlock when using ``stdout=PIPE`` or ``stderr=PIPE``
641 and the child process generates enough output to a pipe such that
642 it blocks waiting for the OS pipe buffer to accept more data.
643 Use :meth:`Popen.communicate` when using pipes to avoid that.
644
645 .. note::
646
Victor Stinner07171242014-02-24 13:18:47 +0100647 The function is implemented using a busy loop (non-blocking call and
648 short sleeps). Use the :mod:`asyncio` module for an asynchronous wait:
649 see :class:`asyncio.create_subprocess_exec`.
650
Reid Kleckner28f13032011-03-14 12:36:53 -0400651 .. versionchanged:: 3.3
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400652 *timeout* was added.
Georg Brandl116aa622007-08-15 14:28:22 +0000653
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400654.. method:: Popen.communicate(input=None, timeout=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000655
656 Interact with process: Send data to stdin. Read data from stdout and stderr,
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400657 until end-of-file is reached. Wait for process to terminate. The optional
Gregory P. Smitha454ef62011-05-22 22:29:49 -0700658 *input* argument should be data to be sent to the child process, or
Steve Dower050acae2016-09-06 20:16:17 -0700659 ``None``, if no data should be sent to the child. If streams were opened in
660 text mode, *input* must be a string. Otherwise, it must be bytes.
Georg Brandl116aa622007-08-15 14:28:22 +0000661
Victor Stinner39892052014-10-14 00:52:07 +0200662 :meth:`communicate` returns a tuple ``(stdout_data, stderr_data)``.
Steve Dower050acae2016-09-06 20:16:17 -0700663 The data will be strings if streams were opened in text mode; otherwise,
664 bytes.
Georg Brandl116aa622007-08-15 14:28:22 +0000665
Guido van Rossum0d3fb8a2007-11-26 23:23:18 +0000666 Note that if you want to send data to the process's stdin, you need to create
667 the Popen object with ``stdin=PIPE``. Similarly, to get anything other than
668 ``None`` in the result tuple, you need to give ``stdout=PIPE`` and/or
669 ``stderr=PIPE`` too.
670
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400671 If the process does not terminate after *timeout* seconds, a
672 :exc:`TimeoutExpired` exception will be raised. Catching this exception and
673 retrying communication will not lose any output.
674
675 The child process is not killed if the timeout expires, so in order to
676 cleanup properly a well-behaved application should kill the child process and
677 finish communication::
678
679 proc = subprocess.Popen(...)
680 try:
681 outs, errs = proc.communicate(timeout=15)
682 except TimeoutExpired:
683 proc.kill()
684 outs, errs = proc.communicate()
685
Christian Heimes7f044312008-01-06 17:05:40 +0000686 .. note::
Georg Brandl116aa622007-08-15 14:28:22 +0000687
Christian Heimes7f044312008-01-06 17:05:40 +0000688 The data read is buffered in memory, so do not use this method if the data
689 size is large or unlimited.
690
Reid Kleckner28f13032011-03-14 12:36:53 -0400691 .. versionchanged:: 3.3
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400692 *timeout* was added.
693
Georg Brandl116aa622007-08-15 14:28:22 +0000694
Christian Heimesa342c012008-04-20 21:01:16 +0000695.. method:: Popen.send_signal(signal)
696
697 Sends the signal *signal* to the child.
698
699 .. note::
700
Brian Curtineb24d742010-04-12 17:16:38 +0000701 On Windows, SIGTERM is an alias for :meth:`terminate`. CTRL_C_EVENT and
Senthil Kumaran916bd382010-10-15 12:55:19 +0000702 CTRL_BREAK_EVENT can be sent to processes started with a *creationflags*
Brian Curtineb24d742010-04-12 17:16:38 +0000703 parameter which includes `CREATE_NEW_PROCESS_GROUP`.
Christian Heimesa342c012008-04-20 21:01:16 +0000704
Christian Heimesa342c012008-04-20 21:01:16 +0000705
706.. method:: Popen.terminate()
707
708 Stop the child. On Posix OSs the method sends SIGTERM to the
Georg Brandl60203b42010-10-06 10:11:56 +0000709 child. On Windows the Win32 API function :c:func:`TerminateProcess` is called
Christian Heimesa342c012008-04-20 21:01:16 +0000710 to stop the child.
711
Christian Heimesa342c012008-04-20 21:01:16 +0000712
713.. method:: Popen.kill()
714
715 Kills the child. On Posix OSs the function sends SIGKILL to the child.
716 On Windows :meth:`kill` is an alias for :meth:`terminate`.
717
Christian Heimesa342c012008-04-20 21:01:16 +0000718
Georg Brandl116aa622007-08-15 14:28:22 +0000719The following attributes are also available:
720
Gregory P. Smith024c5ee2014-04-29 11:33:23 -0700721.. attribute:: Popen.args
722
723 The *args* argument as it was passed to :class:`Popen` -- a
724 sequence of program arguments or else a single string.
725
726 .. versionadded:: 3.3
Georg Brandl734e2682008-08-12 08:18:18 +0000727
Georg Brandl116aa622007-08-15 14:28:22 +0000728.. attribute:: Popen.stdin
729
Benjamin Peterson3d8814e2014-01-18 00:45:56 -0500730 If the *stdin* argument was :data:`PIPE`, this attribute is a writeable
Steve Dower050acae2016-09-06 20:16:17 -0700731 stream object as returned by :func:`open`. If the *encoding* or *errors*
732 arguments were specified or the *universal_newlines* argument was ``True``,
733 the stream is a text stream, otherwise it is a byte stream. If the *stdin*
734 argument was not :data:`PIPE`, this attribute is ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000735
736
737.. attribute:: Popen.stdout
738
Benjamin Peterson3d8814e2014-01-18 00:45:56 -0500739 If the *stdout* argument was :data:`PIPE`, this attribute is a readable
740 stream object as returned by :func:`open`. Reading from the stream provides
Steve Dower050acae2016-09-06 20:16:17 -0700741 output from the child process. If the *encoding* or *errors* arguments were
742 specified or the *universal_newlines* argument was ``True``, the stream is a
743 text stream, otherwise it is a byte stream. If the *stdout* argument was not
744 :data:`PIPE`, this attribute is ``None``.
Benjamin Petersonaf69fe22014-01-18 00:49:04 -0500745
Georg Brandl116aa622007-08-15 14:28:22 +0000746
747.. attribute:: Popen.stderr
748
Benjamin Peterson3d8814e2014-01-18 00:45:56 -0500749 If the *stderr* argument was :data:`PIPE`, this attribute is a readable
750 stream object as returned by :func:`open`. Reading from the stream provides
Steve Dower050acae2016-09-06 20:16:17 -0700751 error output from the child process. If the *encoding* or *errors* arguments
752 were specified or the *universal_newlines* argument was ``True``, the stream
753 is a text stream, otherwise it is a byte stream. If the *stderr* argument was
754 not :data:`PIPE`, this attribute is ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000755
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700756.. warning::
757
758 Use :meth:`~Popen.communicate` rather than :attr:`.stdin.write <Popen.stdin>`,
759 :attr:`.stdout.read <Popen.stdout>` or :attr:`.stderr.read <Popen.stderr>` to avoid
760 deadlocks due to any of the other OS pipe buffers filling up and blocking the
761 child process.
762
Georg Brandl116aa622007-08-15 14:28:22 +0000763
764.. attribute:: Popen.pid
765
766 The process ID of the child process.
767
Georg Brandl58bfdca2010-03-21 09:50:49 +0000768 Note that if you set the *shell* argument to ``True``, this is the process ID
769 of the spawned shell.
770
Georg Brandl116aa622007-08-15 14:28:22 +0000771
772.. attribute:: Popen.returncode
773
Christian Heimes7f044312008-01-06 17:05:40 +0000774 The child return code, set by :meth:`poll` and :meth:`wait` (and indirectly
775 by :meth:`communicate`). A ``None`` value indicates that the process
776 hasn't terminated yet.
Georg Brandl48310cd2009-01-03 21:18:54 +0000777
Christian Heimes7f044312008-01-06 17:05:40 +0000778 A negative value ``-N`` indicates that the child was terminated by signal
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700779 ``N`` (POSIX only).
Georg Brandl116aa622007-08-15 14:28:22 +0000780
781
Brian Curtine6242d72011-04-29 22:17:51 -0500782Windows Popen Helpers
783---------------------
784
785The :class:`STARTUPINFO` class and following constants are only available
786on Windows.
787
Berker Peksagf5184742017-03-01 12:51:55 +0300788.. class:: STARTUPINFO(*, dwFlags=0, hStdInput=None, hStdOutput=None, \
Segev Finerb2a60832017-12-18 11:28:19 +0200789 hStdError=None, wShowWindow=0, lpAttributeList=None)
Brian Curtin73365dd2011-04-29 22:18:33 -0500790
Brian Curtine6242d72011-04-29 22:17:51 -0500791 Partial support of the Windows
Georg Brandl5d941342016-02-26 19:37:12 +0100792 `STARTUPINFO <https://msdn.microsoft.com/en-us/library/ms686331(v=vs.85).aspx>`__
Berker Peksagf5184742017-03-01 12:51:55 +0300793 structure is used for :class:`Popen` creation. The following attributes can
794 be set by passing them as keyword-only arguments.
795
796 .. versionchanged:: 3.7
797 Keyword-only argument support was added.
Brian Curtine6242d72011-04-29 22:17:51 -0500798
799 .. attribute:: dwFlags
800
Senthil Kumarana6bac952011-07-04 11:28:30 -0700801 A bit field that determines whether certain :class:`STARTUPINFO`
802 attributes are used when the process creates a window. ::
Brian Curtine6242d72011-04-29 22:17:51 -0500803
804 si = subprocess.STARTUPINFO()
805 si.dwFlags = subprocess.STARTF_USESTDHANDLES | subprocess.STARTF_USESHOWWINDOW
806
807 .. attribute:: hStdInput
808
Senthil Kumarana6bac952011-07-04 11:28:30 -0700809 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
810 is the standard input handle for the process. If
811 :data:`STARTF_USESTDHANDLES` is not specified, the default for standard
812 input is the keyboard buffer.
Brian Curtine6242d72011-04-29 22:17:51 -0500813
814 .. attribute:: hStdOutput
815
Senthil Kumarana6bac952011-07-04 11:28:30 -0700816 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
817 is the standard output handle for the process. Otherwise, this attribute
818 is ignored and the default for standard output is the console window's
Brian Curtine6242d72011-04-29 22:17:51 -0500819 buffer.
820
821 .. attribute:: hStdError
822
Senthil Kumarana6bac952011-07-04 11:28:30 -0700823 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
824 is the standard error handle for the process. Otherwise, this attribute is
Brian Curtine6242d72011-04-29 22:17:51 -0500825 ignored and the default for standard error is the console window's buffer.
826
827 .. attribute:: wShowWindow
828
Senthil Kumarana6bac952011-07-04 11:28:30 -0700829 If :attr:`dwFlags` specifies :data:`STARTF_USESHOWWINDOW`, this attribute
Brian Curtine6242d72011-04-29 22:17:51 -0500830 can be any of the values that can be specified in the ``nCmdShow``
831 parameter for the
Georg Brandl5d941342016-02-26 19:37:12 +0100832 `ShowWindow <https://msdn.microsoft.com/en-us/library/ms633548(v=vs.85).aspx>`__
Senthil Kumarana6bac952011-07-04 11:28:30 -0700833 function, except for ``SW_SHOWDEFAULT``. Otherwise, this attribute is
Brian Curtine6242d72011-04-29 22:17:51 -0500834 ignored.
Brian Curtin73365dd2011-04-29 22:18:33 -0500835
Brian Curtine6242d72011-04-29 22:17:51 -0500836 :data:`SW_HIDE` is provided for this attribute. It is used when
837 :class:`Popen` is called with ``shell=True``.
838
Segev Finerb2a60832017-12-18 11:28:19 +0200839 .. attribute:: lpAttributeList
840
841 A dictionary of additional attributes for process creation as given in
842 ``STARTUPINFOEX``, see
843 `UpdateProcThreadAttribute <https://msdn.microsoft.com/en-us/library/windows/desktop/ms686880(v=vs.85).aspx>`__.
844
845 Supported attributes:
846
847 **handle_list**
848 Sequence of handles that will be inherited. *close_fds* must be true if
849 non-empty.
850
851 The handles must be temporarily made inheritable by
852 :func:`os.set_handle_inheritable` when passed to the :class:`Popen`
853 constructor, else :class:`OSError` will be raised with Windows error
854 ``ERROR_INVALID_PARAMETER`` (87).
855
856 .. warning::
857
858 In a multithreaded process, use caution to avoid leaking handles
859 that are marked inheritable when combining this feature with
860 concurrent calls to other process creation functions that inherit
861 all handles such as :func:`os.system`. This also applies to
862 standard handle redirection, which temporarily creates inheritable
863 handles.
864
865 .. versionadded:: 3.7
Brian Curtine6242d72011-04-29 22:17:51 -0500866
Jamesb5d9e082017-11-08 14:18:59 +0000867Windows Constants
868^^^^^^^^^^^^^^^^^
Brian Curtine6242d72011-04-29 22:17:51 -0500869
870The :mod:`subprocess` module exposes the following constants.
871
872.. data:: STD_INPUT_HANDLE
873
874 The standard input device. Initially, this is the console input buffer,
875 ``CONIN$``.
876
877.. data:: STD_OUTPUT_HANDLE
878
879 The standard output device. Initially, this is the active console screen
880 buffer, ``CONOUT$``.
881
882.. data:: STD_ERROR_HANDLE
883
884 The standard error device. Initially, this is the active console screen
885 buffer, ``CONOUT$``.
886
887.. data:: SW_HIDE
888
889 Hides the window. Another window will be activated.
890
891.. data:: STARTF_USESTDHANDLES
892
893 Specifies that the :attr:`STARTUPINFO.hStdInput`,
Senthil Kumarana6bac952011-07-04 11:28:30 -0700894 :attr:`STARTUPINFO.hStdOutput`, and :attr:`STARTUPINFO.hStdError` attributes
Brian Curtine6242d72011-04-29 22:17:51 -0500895 contain additional information.
896
897.. data:: STARTF_USESHOWWINDOW
898
Senthil Kumarana6bac952011-07-04 11:28:30 -0700899 Specifies that the :attr:`STARTUPINFO.wShowWindow` attribute contains
Brian Curtine6242d72011-04-29 22:17:51 -0500900 additional information.
901
902.. data:: CREATE_NEW_CONSOLE
903
904 The new process has a new console, instead of inheriting its parent's
905 console (the default).
Brian Curtin73365dd2011-04-29 22:18:33 -0500906
Brian Curtin30401932011-04-29 22:20:57 -0500907.. data:: CREATE_NEW_PROCESS_GROUP
908
909 A :class:`Popen` ``creationflags`` parameter to specify that a new process
910 group will be created. This flag is necessary for using :func:`os.kill`
911 on the subprocess.
912
913 This flag is ignored if :data:`CREATE_NEW_CONSOLE` is specified.
914
Jamesb5d9e082017-11-08 14:18:59 +0000915.. data:: ABOVE_NORMAL_PRIORITY_CLASS
916
917 A :class:`Popen` ``creationflags`` parameter to specify that a new process
918 will have an above average priority.
919
920 .. versionadded:: 3.7
921
922.. data:: BELOW_NORMAL_PRIORITY_CLASS
923
924 A :class:`Popen` ``creationflags`` parameter to specify that a new process
925 will have a below average priority.
926
927 .. versionadded:: 3.7
928
929.. data:: HIGH_PRIORITY_CLASS
930
931 A :class:`Popen` ``creationflags`` parameter to specify that a new process
932 will have a high priority.
933
934 .. versionadded:: 3.7
935
936.. data:: IDLE_PRIORITY_CLASS
937
938 A :class:`Popen` ``creationflags`` parameter to specify that a new process
939 will have an idle (lowest) priority.
940
941 .. versionadded:: 3.7
942
943.. data:: NORMAL_PRIORITY_CLASS
944
945 A :class:`Popen` ``creationflags`` parameter to specify that a new process
946 will have an normal priority. (default)
947
948 .. versionadded:: 3.7
949
950.. data:: REALTIME_PRIORITY_CLASS
951
952 A :class:`Popen` ``creationflags`` parameter to specify that a new process
953 will have realtime priority.
954 You should almost never use REALTIME_PRIORITY_CLASS, because this interrupts
955 system threads that manage mouse input, keyboard input, and background disk
956 flushing. This class can be appropriate for applications that "talk" directly
957 to hardware or that perform brief tasks that should have limited interruptions.
958
959 .. versionadded:: 3.7
960
961.. data:: CREATE_NO_WINDOW
962
963 A :class:`Popen` ``creationflags`` parameter to specify that a new process
964 will not create a window
965
966 .. versionadded:: 3.7
967
968.. data:: DETACHED_PROCESS
969
970 A :class:`Popen` ``creationflags`` parameter to specify that a new process
971 will not inherit its parent's console.
972 This value cannot be used with CREATE_NEW_CONSOLE.
973
974 .. versionadded:: 3.7
975
976.. data:: CREATE_DEFAULT_ERROR_MODE
977
978 A :class:`Popen` ``creationflags`` parameter to specify that a new process
979 does not inherit the error mode of the calling process. Instead, the new
980 process gets the default error mode.
981 This feature is particularly useful for multithreaded shell applications
982 that run with hard errors disabled.
983
984 .. versionadded:: 3.7
985
986.. data:: CREATE_BREAKAWAY_FROM_JOB
987
988 A :class:`Popen` ``creationflags`` parameter to specify that a new process
989 is not associated with the job.
990
991 .. versionadded:: 3.7
992
Gregory P. Smith6e730002015-04-14 16:14:25 -0700993.. _call-function-trio:
994
995Older high-level API
996--------------------
997
998Prior to Python 3.5, these three functions comprised the high level API to
999subprocess. You can now use :func:`run` in many cases, but lots of existing code
1000calls these functions.
1001
Alex Gaynor368cf1d2017-05-25 22:28:17 -04001002.. function:: call(args, *, stdin=None, stdout=None, stderr=None, shell=False, cwd=None, timeout=None)
Gregory P. Smith6e730002015-04-14 16:14:25 -07001003
1004 Run the command described by *args*. Wait for command to complete, then
Berker Peksagbf1d4b62015-07-25 14:27:07 +03001005 return the :attr:`~Popen.returncode` attribute.
Gregory P. Smith6e730002015-04-14 16:14:25 -07001006
1007 This is equivalent to::
1008
1009 run(...).returncode
1010
1011 (except that the *input* and *check* parameters are not supported)
1012
Berker Peksagbf1d4b62015-07-25 14:27:07 +03001013 The arguments shown above are merely the most
1014 common ones. The full function signature is largely the
1015 same as that of the :class:`Popen` constructor - this function passes all
1016 supplied arguments other than *timeout* directly through to that interface.
1017
Gregory P. Smith6e730002015-04-14 16:14:25 -07001018 .. note::
1019
1020 Do not use ``stdout=PIPE`` or ``stderr=PIPE`` with this
1021 function. The child process will block if it generates enough
1022 output to a pipe to fill up the OS pipe buffer as the pipes are
1023 not being read from.
1024
1025 .. versionchanged:: 3.3
1026 *timeout* was added.
1027
Alex Gaynor368cf1d2017-05-25 22:28:17 -04001028.. function:: check_call(args, *, stdin=None, stdout=None, stderr=None, shell=False, cwd=None, timeout=None)
Gregory P. Smith6e730002015-04-14 16:14:25 -07001029
1030 Run command with arguments. Wait for command to complete. If the return
1031 code was zero then return, otherwise raise :exc:`CalledProcessError`. The
1032 :exc:`CalledProcessError` object will have the return code in the
1033 :attr:`~CalledProcessError.returncode` attribute.
1034
1035 This is equivalent to::
1036
1037 run(..., check=True)
1038
1039 (except that the *input* parameter is not supported)
1040
Berker Peksagbf1d4b62015-07-25 14:27:07 +03001041 The arguments shown above are merely the most
1042 common ones. The full function signature is largely the
1043 same as that of the :class:`Popen` constructor - this function passes all
1044 supplied arguments other than *timeout* directly through to that interface.
1045
Gregory P. Smith6e730002015-04-14 16:14:25 -07001046 .. note::
1047
1048 Do not use ``stdout=PIPE`` or ``stderr=PIPE`` with this
1049 function. The child process will block if it generates enough
1050 output to a pipe to fill up the OS pipe buffer as the pipes are
1051 not being read from.
1052
1053 .. versionchanged:: 3.3
1054 *timeout* was added.
1055
1056
Steve Dower050acae2016-09-06 20:16:17 -07001057.. function:: check_output(args, *, stdin=None, stderr=None, shell=False, \
Alex Gaynor368cf1d2017-05-25 22:28:17 -04001058 cwd=None, encoding=None, errors=None, \
Jakub Stasiak7432f092018-11-12 04:40:42 +01001059 universal_newlines=None, timeout=None, text=None)
Gregory P. Smith6e730002015-04-14 16:14:25 -07001060
1061 Run command with arguments and return its output.
1062
1063 If the return code was non-zero it raises a :exc:`CalledProcessError`. The
1064 :exc:`CalledProcessError` object will have the return code in the
1065 :attr:`~CalledProcessError.returncode` attribute and any output in the
1066 :attr:`~CalledProcessError.output` attribute.
1067
1068 This is equivalent to::
1069
1070 run(..., check=True, stdout=PIPE).stdout
1071
Berker Peksagbf1d4b62015-07-25 14:27:07 +03001072 The arguments shown above are merely the most common ones.
1073 The full function signature is largely the same as that of :func:`run` -
1074 most arguments are passed directly through to that interface.
1075 However, explicitly passing ``input=None`` to inherit the parent's
1076 standard input file handle is not supported.
1077
Gregory P. Smith6e730002015-04-14 16:14:25 -07001078 By default, this function will return the data as encoded bytes. The actual
1079 encoding of the output data may depend on the command being invoked, so the
1080 decoding to text will often need to be handled at the application level.
1081
1082 This behaviour may be overridden by setting *universal_newlines* to
1083 ``True`` as described above in :ref:`frequently-used-arguments`.
1084
1085 To also capture standard error in the result, use
1086 ``stderr=subprocess.STDOUT``::
1087
1088 >>> subprocess.check_output(
1089 ... "ls non_existent_file; exit 0",
1090 ... stderr=subprocess.STDOUT,
1091 ... shell=True)
1092 'ls: non_existent_file: No such file or directory\n'
1093
1094 .. versionadded:: 3.1
1095
1096 .. versionchanged:: 3.3
1097 *timeout* was added.
1098
1099 .. versionchanged:: 3.4
Berker Peksagbf1d4b62015-07-25 14:27:07 +03001100 Support for the *input* keyword argument was added.
Brian Curtine6242d72011-04-29 22:17:51 -05001101
Brice Grosfc1ce812018-02-07 01:46:29 +01001102 .. versionchanged:: 3.6
1103 *encoding* and *errors* were added. See :func:`run` for details.
1104
Jakub Stasiak7432f092018-11-12 04:40:42 +01001105 .. versionadded:: 3.7
1106 *text* was added as a more readable alias for *universal_newlines*.
1107
1108
Benjamin Petersondcf97b92008-07-02 17:30:14 +00001109.. _subprocess-replacements:
1110
Ezio Melotti402f75d2012-11-08 10:07:10 +02001111Replacing Older Functions with the :mod:`subprocess` Module
1112-----------------------------------------------------------
Georg Brandl116aa622007-08-15 14:28:22 +00001113
Nick Coghlanc29248f2011-11-08 20:49:23 +10001114In this section, "a becomes b" means that b can be used as a replacement for a.
Georg Brandl116aa622007-08-15 14:28:22 +00001115
1116.. note::
1117
Nick Coghlanc29248f2011-11-08 20:49:23 +10001118 All "a" functions in this section fail (more or less) silently if the
1119 executed program cannot be found; the "b" replacements raise :exc:`OSError`
1120 instead.
Georg Brandl116aa622007-08-15 14:28:22 +00001121
Nick Coghlanc29248f2011-11-08 20:49:23 +10001122 In addition, the replacements using :func:`check_output` will fail with a
1123 :exc:`CalledProcessError` if the requested operation produces a non-zero
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +03001124 return code. The output is still available as the
1125 :attr:`~CalledProcessError.output` attribute of the raised exception.
Nick Coghlanc29248f2011-11-08 20:49:23 +10001126
1127In the following examples, we assume that the relevant functions have already
Ezio Melotti402f75d2012-11-08 10:07:10 +02001128been imported from the :mod:`subprocess` module.
Georg Brandl116aa622007-08-15 14:28:22 +00001129
1130
1131Replacing /bin/sh shell backquote
1132^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1133
Martin Panter1050d2d2016-07-26 11:18:21 +02001134.. code-block:: bash
Georg Brandl116aa622007-08-15 14:28:22 +00001135
1136 output=`mycmd myarg`
Georg Brandl116aa622007-08-15 14:28:22 +00001137
Martin Panter1050d2d2016-07-26 11:18:21 +02001138becomes::
1139
1140 output = check_output(["mycmd", "myarg"])
Georg Brandl116aa622007-08-15 14:28:22 +00001141
Benjamin Petersonf10a79a2008-10-11 00:49:57 +00001142Replacing shell pipeline
1143^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +00001144
Martin Panter1050d2d2016-07-26 11:18:21 +02001145.. code-block:: bash
Georg Brandl116aa622007-08-15 14:28:22 +00001146
1147 output=`dmesg | grep hda`
Martin Panter1050d2d2016-07-26 11:18:21 +02001148
1149becomes::
1150
Georg Brandl116aa622007-08-15 14:28:22 +00001151 p1 = Popen(["dmesg"], stdout=PIPE)
1152 p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
Gregory P. Smithe09d2f12011-02-05 21:47:25 +00001153 p1.stdout.close() # Allow p1 to receive a SIGPIPE if p2 exits.
Georg Brandl116aa622007-08-15 14:28:22 +00001154 output = p2.communicate()[0]
1155
Gregory P. Smithe09d2f12011-02-05 21:47:25 +00001156The p1.stdout.close() call after starting the p2 is important in order for p1
1157to receive a SIGPIPE if p2 exits before p1.
Georg Brandl116aa622007-08-15 14:28:22 +00001158
Nick Coghlanc29248f2011-11-08 20:49:23 +10001159Alternatively, for trusted input, the shell's own pipeline support may still
Martin Panter1050d2d2016-07-26 11:18:21 +02001160be used directly:
1161
1162.. code-block:: bash
Nick Coghlanc29248f2011-11-08 20:49:23 +10001163
1164 output=`dmesg | grep hda`
Martin Panter1050d2d2016-07-26 11:18:21 +02001165
1166becomes::
1167
Nick Coghlanc29248f2011-11-08 20:49:23 +10001168 output=check_output("dmesg | grep hda", shell=True)
1169
1170
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001171Replacing :func:`os.system`
1172^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +00001173
1174::
1175
1176 sts = os.system("mycmd" + " myarg")
Nick Coghlanc29248f2011-11-08 20:49:23 +10001177 # becomes
1178 sts = call("mycmd" + " myarg", shell=True)
Georg Brandl116aa622007-08-15 14:28:22 +00001179
1180Notes:
1181
1182* Calling the program through the shell is usually not required.
1183
Georg Brandl116aa622007-08-15 14:28:22 +00001184A more realistic example would look like this::
1185
1186 try:
1187 retcode = call("mycmd" + " myarg", shell=True)
1188 if retcode < 0:
Collin Winterc79461b2007-09-01 23:34:30 +00001189 print("Child was terminated by signal", -retcode, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +00001190 else:
Collin Winterc79461b2007-09-01 23:34:30 +00001191 print("Child returned", retcode, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +00001192 except OSError as e:
Collin Winterc79461b2007-09-01 23:34:30 +00001193 print("Execution failed:", e, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +00001194
1195
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001196Replacing the :func:`os.spawn <os.spawnl>` family
1197^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +00001198
1199P_NOWAIT example::
1200
1201 pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg")
1202 ==>
1203 pid = Popen(["/bin/mycmd", "myarg"]).pid
1204
1205P_WAIT example::
1206
1207 retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg")
1208 ==>
1209 retcode = call(["/bin/mycmd", "myarg"])
1210
1211Vector example::
1212
1213 os.spawnvp(os.P_NOWAIT, path, args)
1214 ==>
1215 Popen([path] + args[1:])
1216
1217Environment example::
1218
1219 os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env)
1220 ==>
1221 Popen(["/bin/mycmd", "myarg"], env={"PATH": "/usr/bin"})
1222
1223
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001224
1225Replacing :func:`os.popen`, :func:`os.popen2`, :func:`os.popen3`
1226^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +00001227
1228::
1229
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001230 (child_stdin, child_stdout) = os.popen2(cmd, mode, bufsize)
Georg Brandl116aa622007-08-15 14:28:22 +00001231 ==>
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001232 p = Popen(cmd, shell=True, bufsize=bufsize,
1233 stdin=PIPE, stdout=PIPE, close_fds=True)
1234 (child_stdin, child_stdout) = (p.stdin, p.stdout)
Georg Brandl116aa622007-08-15 14:28:22 +00001235
1236::
1237
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001238 (child_stdin,
1239 child_stdout,
1240 child_stderr) = os.popen3(cmd, mode, bufsize)
Georg Brandl116aa622007-08-15 14:28:22 +00001241 ==>
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001242 p = Popen(cmd, shell=True, bufsize=bufsize,
1243 stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True)
1244 (child_stdin,
1245 child_stdout,
1246 child_stderr) = (p.stdin, p.stdout, p.stderr)
1247
1248::
1249
1250 (child_stdin, child_stdout_and_stderr) = os.popen4(cmd, mode, bufsize)
1251 ==>
1252 p = Popen(cmd, shell=True, bufsize=bufsize,
1253 stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True)
1254 (child_stdin, child_stdout_and_stderr) = (p.stdin, p.stdout)
1255
1256Return code handling translates as follows::
1257
1258 pipe = os.popen(cmd, 'w')
1259 ...
1260 rc = pipe.close()
Stefan Krahfc9e08d2010-07-14 10:16:11 +00001261 if rc is not None and rc >> 8:
Ezio Melotti985e24d2009-09-13 07:54:02 +00001262 print("There were some errors")
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001263 ==>
R David Murray17227a72015-09-04 10:01:19 -04001264 process = Popen(cmd, stdin=PIPE)
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001265 ...
1266 process.stdin.close()
1267 if process.wait() != 0:
Ezio Melotti985e24d2009-09-13 07:54:02 +00001268 print("There were some errors")
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001269
1270
1271Replacing functions from the :mod:`popen2` module
1272^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1273
1274.. note::
1275
1276 If the cmd argument to popen2 functions is a string, the command is executed
1277 through /bin/sh. If it is a list, the command is directly executed.
1278
1279::
1280
1281 (child_stdout, child_stdin) = popen2.popen2("somestring", bufsize, mode)
1282 ==>
R David Murrayae9d1932014-05-14 10:09:52 -04001283 p = Popen("somestring", shell=True, bufsize=bufsize,
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001284 stdin=PIPE, stdout=PIPE, close_fds=True)
1285 (child_stdout, child_stdin) = (p.stdout, p.stdin)
1286
1287::
1288
1289 (child_stdout, child_stdin) = popen2.popen2(["mycmd", "myarg"], bufsize, mode)
1290 ==>
1291 p = Popen(["mycmd", "myarg"], bufsize=bufsize,
1292 stdin=PIPE, stdout=PIPE, close_fds=True)
1293 (child_stdout, child_stdin) = (p.stdout, p.stdin)
1294
1295:class:`popen2.Popen3` and :class:`popen2.Popen4` basically work as
1296:class:`subprocess.Popen`, except that:
1297
1298* :class:`Popen` raises an exception if the execution fails.
1299
1300* the *capturestderr* argument is replaced with the *stderr* argument.
1301
1302* ``stdin=PIPE`` and ``stdout=PIPE`` must be specified.
1303
1304* popen2 closes all file descriptors by default, but you have to specify
Gregory P. Smithf5604852010-12-13 06:45:02 +00001305 ``close_fds=True`` with :class:`Popen` to guarantee this behavior on
1306 all platforms or past Python versions.
Eli Bendersky046a7642011-04-15 07:23:26 +03001307
Nick Coghlanc29248f2011-11-08 20:49:23 +10001308
Nick Coghlanc29248f2011-11-08 20:49:23 +10001309Legacy Shell Invocation Functions
Nick Coghlan32e4a582011-11-08 21:50:58 +10001310---------------------------------
Nick Coghlanc29248f2011-11-08 20:49:23 +10001311
1312This module also provides the following legacy functions from the 2.x
1313``commands`` module. These operations implicitly invoke the system shell and
1314none of the guarantees described above regarding security and exception
1315handling consistency are valid for these functions.
1316
1317.. function:: getstatusoutput(cmd)
1318
Gregory P. Smith738b7d92017-09-06 17:39:23 -07001319 Return ``(exitcode, output)`` of executing *cmd* in a shell.
Nick Coghlanc29248f2011-11-08 20:49:23 +10001320
Tim Golden60798142013-11-05 12:57:25 +00001321 Execute the string *cmd* in a shell with :meth:`Popen.check_output` and
Gregory P. Smith738b7d92017-09-06 17:39:23 -07001322 return a 2-tuple ``(exitcode, output)``. The locale encoding is used;
Tim Golden60798142013-11-05 12:57:25 +00001323 see the notes on :ref:`frequently-used-arguments` for more details.
Tim Golden3a2abb52013-11-03 18:24:50 +00001324
1325 A trailing newline is stripped from the output.
Gregory P. Smith738b7d92017-09-06 17:39:23 -07001326 The exit code for the command can be interpreted as the return code
1327 of subprocess. Example::
Nick Coghlanc29248f2011-11-08 20:49:23 +10001328
1329 >>> subprocess.getstatusoutput('ls /bin/ls')
1330 (0, '/bin/ls')
1331 >>> subprocess.getstatusoutput('cat /bin/junk')
Gregory P. Smith738b7d92017-09-06 17:39:23 -07001332 (1, 'cat: /bin/junk: No such file or directory')
Nick Coghlanc29248f2011-11-08 20:49:23 +10001333 >>> subprocess.getstatusoutput('/bin/junk')
Gregory P. Smith738b7d92017-09-06 17:39:23 -07001334 (127, 'sh: /bin/junk: not found')
1335 >>> subprocess.getstatusoutput('/bin/kill $$')
1336 (-15, '')
Nick Coghlanc29248f2011-11-08 20:49:23 +10001337
Cheryl Sabella2d6097d2018-10-12 10:55:20 -04001338 .. availability:: POSIX & Windows.
R David Murray95b696a2014-03-07 20:04:17 -05001339
1340 .. versionchanged:: 3.3.4
Gregory P. Smith738b7d92017-09-06 17:39:23 -07001341 Windows support was added.
1342
1343 The function now returns (exitcode, output) instead of (status, output)
Xiang Zhang7d161722018-09-22 04:18:20 +08001344 as it did in Python 3.3.3 and earlier. exitcode has the same value as
1345 :attr:`~Popen.returncode`.
Nick Coghlanc29248f2011-11-08 20:49:23 +10001346
1347
1348.. function:: getoutput(cmd)
1349
1350 Return output (stdout and stderr) of executing *cmd* in a shell.
1351
Xiang Zhang7d161722018-09-22 04:18:20 +08001352 Like :func:`getstatusoutput`, except the exit code is ignored and the return
Nick Coghlanc29248f2011-11-08 20:49:23 +10001353 value is a string containing the command's output. Example::
1354
1355 >>> subprocess.getoutput('ls /bin/ls')
1356 '/bin/ls'
1357
Cheryl Sabella2d6097d2018-10-12 10:55:20 -04001358 .. availability:: POSIX & Windows.
R David Murray95b696a2014-03-07 20:04:17 -05001359
1360 .. versionchanged:: 3.3.4
1361 Windows support added
Nick Coghlanc29248f2011-11-08 20:49:23 +10001362
Nick Coghlan32e4a582011-11-08 21:50:58 +10001363
Eli Bendersky046a7642011-04-15 07:23:26 +03001364Notes
1365-----
1366
1367.. _converting-argument-sequence:
1368
1369Converting an argument sequence to a string on Windows
1370^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1371
1372On Windows, an *args* sequence is converted to a string that can be parsed
1373using the following rules (which correspond to the rules used by the MS C
1374runtime):
1375
13761. Arguments are delimited by white space, which is either a
1377 space or a tab.
1378
13792. A string surrounded by double quotation marks is
1380 interpreted as a single argument, regardless of white space
1381 contained within. A quoted string can be embedded in an
1382 argument.
1383
13843. A double quotation mark preceded by a backslash is
1385 interpreted as a literal double quotation mark.
1386
13874. Backslashes are interpreted literally, unless they
1388 immediately precede a double quotation mark.
1389
13905. If backslashes immediately precede a double quotation mark,
1391 every pair of backslashes is interpreted as a literal
1392 backslash. If the number of backslashes is odd, the last
1393 backslash escapes the next double quotation mark as
1394 described in rule 3.
1395
Eli Benderskyd2112312011-04-15 07:26:28 +03001396
Éric Araujo9bce3112011-07-27 18:29:31 +02001397.. seealso::
1398
1399 :mod:`shlex`
1400 Module which provides function to parse and escape command lines.