blob: 2eaa48e070dcb85aee49606219794818eef92c48 [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
Serhiy Storchaka7d6dda42016-10-19 18:36:51 +030064 *encoding* or *errors* is specified or *universal_newlines* 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
Serhiy Storchaka7d6dda42016-10-19 18:36:51 +030073 If *encoding* or *errors* are specified, or *universal_newlines* 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.
76 Otherwise, file objects are opened in binary mode.
77
Nick Coghlanc29248f2011-11-08 20:49:23 +100078 Examples::
79
Gregory P. Smith6e730002015-04-14 16:14:25 -070080 >>> subprocess.run(["ls", "-l"]) # doesn't capture output
81 CompletedProcess(args=['ls', '-l'], returncode=0)
Nick Coghlanc29248f2011-11-08 20:49:23 +100082
Gregory P. Smith6e730002015-04-14 16:14:25 -070083 >>> subprocess.run("exit 1", shell=True, check=True)
Nick Coghlanc29248f2011-11-08 20:49:23 +100084 Traceback (most recent call last):
Gregory P. Smith6e730002015-04-14 16:14:25 -070085 ...
Nick Coghlanc29248f2011-11-08 20:49:23 +100086 subprocess.CalledProcessError: Command 'exit 1' returned non-zero exit status 1
87
Gregory P. Smith6e730002015-04-14 16:14:25 -070088 >>> subprocess.run(["ls", "-l", "/dev/null"], stdout=subprocess.PIPE)
89 CompletedProcess(args=['ls', '-l', '/dev/null'], returncode=0,
90 stdout=b'crw-rw-rw- 1 root root 1, 3 Jan 23 16:23 /dev/null\n')
Nick Coghlanc29248f2011-11-08 20:49:23 +100091
Gregory P. Smith6e730002015-04-14 16:14:25 -070092 .. versionadded:: 3.5
Nick Coghlanc29248f2011-11-08 20:49:23 +100093
Steve Dower050acae2016-09-06 20:16:17 -070094 .. versionchanged:: 3.6
95
96 Added *encoding* and *errors* parameters
97
Gregory P. Smith6e730002015-04-14 16:14:25 -070098.. class:: CompletedProcess
Nick Coghlanc29248f2011-11-08 20:49:23 +100099
Gregory P. Smith6e730002015-04-14 16:14:25 -0700100 The return value from :func:`run`, representing a process that has finished.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000101
Gregory P. Smith6e730002015-04-14 16:14:25 -0700102 .. attribute:: args
Nick Coghlanc29248f2011-11-08 20:49:23 +1000103
Gregory P. Smith6e730002015-04-14 16:14:25 -0700104 The arguments used to launch the process. This may be a list or a string.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000105
Gregory P. Smith6e730002015-04-14 16:14:25 -0700106 .. attribute:: returncode
Serhiy Storchakafcd9f222013-04-22 20:20:54 +0300107
Gregory P. Smith6e730002015-04-14 16:14:25 -0700108 Exit status of the child process. Typically, an exit status of 0 indicates
109 that it ran successfully.
Nick Coghlan217f05b2011-11-08 22:11:21 +1000110
Gregory P. Smith6e730002015-04-14 16:14:25 -0700111 A negative value ``-N`` indicates that the child was terminated by signal
112 ``N`` (POSIX only).
113
114 .. attribute:: stdout
115
116 Captured stdout from the child process. A bytes sequence, or a string if
Serhiy Storchaka989db5c2016-10-19 16:37:13 +0300117 :func:`run` was called with an encoding or errors. ``None`` if stdout was not
Steve Dower050acae2016-09-06 20:16:17 -0700118 captured.
Gregory P. Smith6e730002015-04-14 16:14:25 -0700119
120 If you ran the process with ``stderr=subprocess.STDOUT``, stdout and
121 stderr will be combined in this attribute, and :attr:`stderr` will be
Serhiy Storchakaecf41da2016-10-19 16:29:26 +0300122 ``None``.
Gregory P. Smith6e730002015-04-14 16:14:25 -0700123
124 .. attribute:: stderr
125
126 Captured stderr from the child process. A bytes sequence, or a string if
Serhiy Storchaka989db5c2016-10-19 16:37:13 +0300127 :func:`run` was called with an encoding or errors. ``None`` if stderr was not
Steve Dower050acae2016-09-06 20:16:17 -0700128 captured.
Gregory P. Smith6e730002015-04-14 16:14:25 -0700129
130 .. method:: check_returncode()
131
132 If :attr:`returncode` is non-zero, raise a :exc:`CalledProcessError`.
133
134 .. versionadded:: 3.5
Nick Coghlan217f05b2011-11-08 22:11:21 +1000135
136.. data:: DEVNULL
137
138 Special value that can be used as the *stdin*, *stdout* or *stderr* argument
139 to :class:`Popen` and indicates that the special file :data:`os.devnull`
140 will be used.
141
142 .. versionadded:: 3.3
143
Nick Coghlanc29248f2011-11-08 20:49:23 +1000144
145.. data:: PIPE
146
147 Special value that can be used as the *stdin*, *stdout* or *stderr* argument
148 to :class:`Popen` and indicates that a pipe to the standard stream should be
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700149 opened. Most useful with :meth:`Popen.communicate`.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000150
151
152.. data:: STDOUT
153
154 Special value that can be used as the *stderr* argument to :class:`Popen` and
155 indicates that standard error should go into the same handle as standard
156 output.
157
158
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300159.. exception:: SubprocessError
160
161 Base class for all other exceptions from this module.
162
163 .. versionadded:: 3.3
164
165
166.. exception:: TimeoutExpired
167
168 Subclass of :exc:`SubprocessError`, raised when a timeout expires
169 while waiting for a child process.
170
171 .. attribute:: cmd
172
173 Command that was used to spawn the child process.
174
175 .. attribute:: timeout
176
177 Timeout in seconds.
178
179 .. attribute:: output
180
Gregory P. Smith6e730002015-04-14 16:14:25 -0700181 Output of the child process if it was captured by :func:`run` or
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300182 :func:`check_output`. Otherwise, ``None``.
183
Gregory P. Smith6e730002015-04-14 16:14:25 -0700184 .. attribute:: stdout
185
186 Alias for output, for symmetry with :attr:`stderr`.
187
188 .. attribute:: stderr
189
190 Stderr output of the child process if it was captured by :func:`run`.
191 Otherwise, ``None``.
192
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300193 .. versionadded:: 3.3
194
Gregory P. Smith6e730002015-04-14 16:14:25 -0700195 .. versionchanged:: 3.5
196 *stdout* and *stderr* attributes added
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300197
198.. exception:: CalledProcessError
199
200 Subclass of :exc:`SubprocessError`, raised when a process run by
201 :func:`check_call` or :func:`check_output` returns a non-zero exit status.
202
203 .. attribute:: returncode
204
Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)583a1d62016-06-03 00:31:21 +0000205 Exit status of the child process. If the process exited due to a
206 signal, this will be the negative signal number.
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300207
208 .. attribute:: cmd
209
210 Command that was used to spawn the child process.
211
212 .. attribute:: output
213
Gregory P. Smith6e730002015-04-14 16:14:25 -0700214 Output of the child process if it was captured by :func:`run` or
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300215 :func:`check_output`. Otherwise, ``None``.
216
Gregory P. Smith6e730002015-04-14 16:14:25 -0700217 .. attribute:: stdout
218
219 Alias for output, for symmetry with :attr:`stderr`.
220
221 .. attribute:: stderr
222
223 Stderr output of the child process if it was captured by :func:`run`.
224 Otherwise, ``None``.
225
226 .. versionchanged:: 3.5
227 *stdout* and *stderr* attributes added
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300228
229
Nick Coghlanc29248f2011-11-08 20:49:23 +1000230.. _frequently-used-arguments:
231
232Frequently Used Arguments
233^^^^^^^^^^^^^^^^^^^^^^^^^
234
235To support a wide variety of use cases, the :class:`Popen` constructor (and
236the convenience functions) accept a large number of optional arguments. For
237most typical use cases, many of these arguments can be safely left at their
238default values. The arguments that are most commonly needed are:
239
240 *args* is required for all calls and should be a string, or a sequence of
241 program arguments. Providing a sequence of arguments is generally
242 preferred, as it allows the module to take care of any required escaping
243 and quoting of arguments (e.g. to permit spaces in file names). If passing
244 a single string, either *shell* must be :const:`True` (see below) or else
245 the string must simply name the program to be executed without specifying
246 any arguments.
247
248 *stdin*, *stdout* and *stderr* specify the executed program's standard input,
249 standard output and standard error file handles, respectively. Valid values
Nick Coghlan217f05b2011-11-08 22:11:21 +1000250 are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive
251 integer), an existing file object, and ``None``. :data:`PIPE` indicates
252 that a new pipe to the child should be created. :data:`DEVNULL` indicates
253 that the special file :data:`os.devnull` will be used. With the default
254 settings of ``None``, no redirection will occur; the child's file handles
255 will be inherited from the parent. Additionally, *stderr* can be
256 :data:`STDOUT`, which indicates that the stderr data from the child
257 process should be captured into the same file handle as for *stdout*.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000258
R David Murray1b00f252012-08-15 10:43:58 -0400259 .. index::
260 single: universal newlines; subprocess module
261
Serhiy Storchaka7d6dda42016-10-19 18:36:51 +0300262 If *encoding* or *errors* are specified, or *universal_newlines* is true,
Steve Dower050acae2016-09-06 20:16:17 -0700263 the file objects *stdin*, *stdout* and *stderr* will be opened in text
264 mode using the *encoding* and *errors* specified in the call or the
265 defaults for :class:`io.TextIOWrapper`.
Ronald Oussoren385521c2013-07-07 09:26:45 +0200266
Steve Dower050acae2016-09-06 20:16:17 -0700267 For *stdin*, line ending characters ``'\n'`` in the input will be converted
268 to the default line separator :data:`os.linesep`. For *stdout* and *stderr*,
269 all line endings in the output will be converted to ``'\n'``. For more
270 information see the documentation of the :class:`io.TextIOWrapper` class
271 when the *newline* argument to its constructor is ``None``.
272
273 If text mode is not used, *stdin*, *stdout* and *stderr* will be opened as
274 binary streams. No encoding or line ending conversion is performed.
275
276 .. versionadded:: 3.6
277 Added *encoding* and *errors* parameters.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000278
Andrew Svetlov50be4522012-08-13 22:09:04 +0300279 .. note::
280
Gregory P. Smith1f8a40b2013-03-20 18:32:03 -0700281 The newlines attribute of the file objects :attr:`Popen.stdin`,
282 :attr:`Popen.stdout` and :attr:`Popen.stderr` are not updated by
283 the :meth:`Popen.communicate` method.
Andrew Svetlov50be4522012-08-13 22:09:04 +0300284
285 If *shell* is ``True``, the specified command will be executed through
Ezio Melotti186d5232012-09-15 08:34:08 +0300286 the shell. This can be useful if you are using Python primarily for the
Nick Coghlanc29248f2011-11-08 20:49:23 +1000287 enhanced control flow it offers over most system shells and still want
Ezio Melotti186d5232012-09-15 08:34:08 +0300288 convenient access to other shell features such as shell pipes, filename
289 wildcards, environment variable expansion, and expansion of ``~`` to a
290 user's home directory. However, note that Python itself offers
291 implementations of many shell-like features (in particular, :mod:`glob`,
292 :mod:`fnmatch`, :func:`os.walk`, :func:`os.path.expandvars`,
293 :func:`os.path.expanduser`, and :mod:`shutil`).
Nick Coghlanc29248f2011-11-08 20:49:23 +1000294
Andrew Svetlov4805fa82012-08-13 22:11:14 +0300295 .. versionchanged:: 3.3
296 When *universal_newlines* is ``True``, the class uses the encoding
297 :func:`locale.getpreferredencoding(False) <locale.getpreferredencoding>`
298 instead of ``locale.getpreferredencoding()``. See the
299 :class:`io.TextIOWrapper` class for more information on this change.
300
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700301 .. note::
Nick Coghlanc29248f2011-11-08 20:49:23 +1000302
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700303 Read the `Security Considerations`_ section before using ``shell=True``.
Andrew Svetlovc2415eb2012-10-28 11:42:26 +0200304
Nick Coghlanc29248f2011-11-08 20:49:23 +1000305These options, along with all of the other options, are described in more
306detail in the :class:`Popen` constructor documentation.
307
308
Sandro Tosi1526ad12011-12-25 11:27:37 +0100309Popen Constructor
Sandro Tosi3e6c8142011-12-25 17:14:11 +0100310^^^^^^^^^^^^^^^^^
Nick Coghlanc29248f2011-11-08 20:49:23 +1000311
312The underlying process creation and management in this module is handled by
313the :class:`Popen` class. It offers a lot of flexibility so that developers
314are able to handle the less common cases not covered by the convenience
315functions.
Georg Brandl116aa622007-08-15 14:28:22 +0000316
317
Gregory P. Smitha1ed5392013-03-23 11:44:25 -0700318.. class:: Popen(args, bufsize=-1, executable=None, stdin=None, stdout=None, \
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700319 stderr=None, preexec_fn=None, close_fds=True, shell=False, \
320 cwd=None, env=None, universal_newlines=False, \
321 startupinfo=None, creationflags=0, restore_signals=True, \
Steve Dower050acae2016-09-06 20:16:17 -0700322 start_new_session=False, pass_fds=(), *, \
323 encoding=None, errors=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000324
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700325 Execute a child program in a new process. On POSIX, the class uses
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700326 :meth:`os.execvp`-like behavior to execute the child program. On Windows,
327 the class uses the Windows ``CreateProcess()`` function. The arguments to
328 :class:`Popen` are as follows.
Georg Brandl116aa622007-08-15 14:28:22 +0000329
Chris Jerdonek470ee392012-10-08 23:06:57 -0700330 *args* should be a sequence of program arguments or else a single string.
331 By default, the program to execute is the first item in *args* if *args* is
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700332 a sequence. If *args* is a string, the interpretation is
333 platform-dependent and described below. See the *shell* and *executable*
334 arguments for additional differences from the default behavior. Unless
335 otherwise stated, it is recommended to pass *args* as a sequence.
Georg Brandl116aa622007-08-15 14:28:22 +0000336
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700337 On POSIX, if *args* is a string, the string is interpreted as the name or
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700338 path of the program to execute. However, this can only be done if not
339 passing arguments to the program.
Georg Brandl116aa622007-08-15 14:28:22 +0000340
R. David Murray5973e4d2010-02-04 16:41:57 +0000341 .. note::
342
343 :meth:`shlex.split` can be useful when determining the correct
344 tokenization for *args*, especially in complex cases::
345
346 >>> import shlex, subprocess
R. David Murray73bc75b2010-02-05 16:25:12 +0000347 >>> command_line = input()
R. David Murray5973e4d2010-02-04 16:41:57 +0000348 /bin/vikings -input eggs.txt -output "spam spam.txt" -cmd "echo '$MONEY'"
349 >>> args = shlex.split(command_line)
350 >>> print(args)
351 ['/bin/vikings', '-input', 'eggs.txt', '-output', 'spam spam.txt', '-cmd', "echo '$MONEY'"]
352 >>> p = subprocess.Popen(args) # Success!
353
354 Note in particular that options (such as *-input*) and arguments (such
355 as *eggs.txt*) that are separated by whitespace in the shell go in separate
356 list elements, while arguments that need quoting or backslash escaping when
357 used in the shell (such as filenames containing spaces or the *echo* command
358 shown above) are single list elements.
359
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700360 On Windows, if *args* is a sequence, it will be converted to a string in a
361 manner described in :ref:`converting-argument-sequence`. This is because
362 the underlying ``CreateProcess()`` operates on strings.
Chris Jerdonek470ee392012-10-08 23:06:57 -0700363
Serhiy Storchakaa97cd2e2016-10-19 16:43:42 +0300364 The *shell* argument (which defaults to ``False``) specifies whether to use
365 the shell as the program to execute. If *shell* is ``True``, it is
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700366 recommended to pass *args* as a string rather than as a sequence.
Chris Jerdonek470ee392012-10-08 23:06:57 -0700367
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700368 On POSIX with ``shell=True``, the shell defaults to :file:`/bin/sh`. If
Chris Jerdonek470ee392012-10-08 23:06:57 -0700369 *args* is a string, the string specifies the command
370 to execute through the shell. This means that the string must be
R. David Murray5973e4d2010-02-04 16:41:57 +0000371 formatted exactly as it would be when typed at the shell prompt. This
372 includes, for example, quoting or backslash escaping filenames with spaces in
373 them. If *args* is a sequence, the first item specifies the command string, and
374 any additional items will be treated as additional arguments to the shell
Chris Jerdonek470ee392012-10-08 23:06:57 -0700375 itself. That is to say, :class:`Popen` does the equivalent of::
R. David Murray5973e4d2010-02-04 16:41:57 +0000376
377 Popen(['/bin/sh', '-c', args[0], args[1], ...])
Georg Brandl116aa622007-08-15 14:28:22 +0000378
Chris Jerdonek470ee392012-10-08 23:06:57 -0700379 On Windows with ``shell=True``, the :envvar:`COMSPEC` environment variable
380 specifies the default shell. The only time you need to specify
381 ``shell=True`` on Windows is when the command you wish to execute is built
382 into the shell (e.g. :command:`dir` or :command:`copy`). You do not need
383 ``shell=True`` to run a batch file or console-based executable.
Georg Brandl116aa622007-08-15 14:28:22 +0000384
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700385 .. note::
Chris Jerdonekcc32a682012-10-10 22:52:22 -0700386
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700387 Read the `Security Considerations`_ section before using ``shell=True``.
Chris Jerdonekcc32a682012-10-10 22:52:22 -0700388
Antoine Pitrouafe8d062014-09-21 21:10:56 +0200389 *bufsize* will be supplied as the corresponding argument to the
390 :func:`open` function when creating the stdin/stdout/stderr pipe
391 file objects:
392
393 - :const:`0` means unbuffered (read and write are one
394 system call and can return short)
395 - :const:`1` means line buffered
396 (only usable if ``universal_newlines=True`` i.e., in a text mode)
397 - any other positive value means use a buffer of approximately that
398 size
399 - negative bufsize (the default) means the system default of
400 io.DEFAULT_BUFFER_SIZE will be used.
Georg Brandl116aa622007-08-15 14:28:22 +0000401
Georg Brandl37b70bb2013-11-25 08:48:37 +0100402 .. versionchanged:: 3.3.1
Gregory P. Smitha1ed5392013-03-23 11:44:25 -0700403 *bufsize* now defaults to -1 to enable buffering by default to match the
Georg Brandl37b70bb2013-11-25 08:48:37 +0100404 behavior that most code expects. In versions prior to Python 3.2.4 and
405 3.3.1 it incorrectly defaulted to :const:`0` which was unbuffered
406 and allowed short reads. This was unintentional and did not match the
407 behavior of Python 2 as most code expected.
Antoine Pitrou4b876202010-06-02 17:10:49 +0000408
Chris Jerdonek470ee392012-10-08 23:06:57 -0700409 The *executable* argument specifies a replacement program to execute. It
410 is very seldom needed. When ``shell=False``, *executable* replaces the
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700411 program to execute specified by *args*. However, the original *args* is
412 still passed to the program. Most programs treat the program specified
413 by *args* as the command name, which can then be different from the program
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700414 actually executed. On POSIX, the *args* name
Chris Jerdonek470ee392012-10-08 23:06:57 -0700415 becomes the display name for the executable in utilities such as
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700416 :program:`ps`. If ``shell=True``, on POSIX the *executable* argument
Chris Jerdonek470ee392012-10-08 23:06:57 -0700417 specifies a replacement shell for the default :file:`/bin/sh`.
Georg Brandl116aa622007-08-15 14:28:22 +0000418
Nick Coghlanc29248f2011-11-08 20:49:23 +1000419 *stdin*, *stdout* and *stderr* specify the executed program's standard input,
Georg Brandlaf265f42008-12-07 15:06:20 +0000420 standard output and standard error file handles, respectively. Valid values
Ross Lagerwallba102ec2011-03-16 18:40:25 +0200421 are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive
422 integer), an existing :term:`file object`, and ``None``. :data:`PIPE`
423 indicates that a new pipe to the child should be created. :data:`DEVNULL`
Nick Coghlan217f05b2011-11-08 22:11:21 +1000424 indicates that the special file :data:`os.devnull` will be used. With the
425 default settings of ``None``, no redirection will occur; the child's file
426 handles will be inherited from the parent. Additionally, *stderr* can be
427 :data:`STDOUT`, which indicates that the stderr data from the applications
428 should be captured into the same file handle as for stdout.
Georg Brandl116aa622007-08-15 14:28:22 +0000429
430 If *preexec_fn* is set to a callable object, this object will be called in the
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000431 child process just before the child is executed.
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700432 (POSIX only)
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000433
434 .. warning::
435
436 The *preexec_fn* parameter is not safe to use in the presence of threads
437 in your application. The child process could deadlock before exec is
438 called.
439 If you must use it, keep it trivial! Minimize the number of libraries
440 you call into.
441
442 .. note::
443
444 If you need to modify the environment for the child use the *env*
445 parameter rather than doing it in a *preexec_fn*.
446 The *start_new_session* parameter can take the place of a previously
447 common use of *preexec_fn* to call os.setsid() in the child.
Georg Brandl116aa622007-08-15 14:28:22 +0000448
449 If *close_fds* is true, all file descriptors except :const:`0`, :const:`1` and
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700450 :const:`2` will be closed before the child process is executed. (POSIX only).
451 The default varies by platform: Always true on POSIX. On Windows it is
Gregory P. Smith8edd99d2010-12-14 13:43:30 +0000452 true when *stdin*/*stdout*/*stderr* are :const:`None`, false otherwise.
Gregory P. Smithd23047b2010-12-04 09:10:44 +0000453 On Windows, if *close_fds* is true then no handles will be inherited by the
Georg Brandl116aa622007-08-15 14:28:22 +0000454 child process. Note that on Windows, you cannot set *close_fds* to true and
455 also redirect the standard handles by setting *stdin*, *stdout* or *stderr*.
456
Gregory P. Smith8edd99d2010-12-14 13:43:30 +0000457 .. versionchanged:: 3.2
458 The default for *close_fds* was changed from :const:`False` to
459 what is described above.
460
461 *pass_fds* is an optional sequence of file descriptors to keep open
462 between the parent and child. Providing any *pass_fds* forces
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700463 *close_fds* to be :const:`True`. (POSIX only)
Gregory P. Smith8edd99d2010-12-14 13:43:30 +0000464
465 .. versionadded:: 3.2
466 The *pass_fds* parameter was added.
Georg Brandl116aa622007-08-15 14:28:22 +0000467
Chris Jerdonekec3ea942012-09-30 00:10:28 -0700468 If *cwd* is not ``None``, the function changes the working directory to
Sayan Chowdhuryd5c11f72017-02-26 22:36:10 +0530469 *cwd* before executing the child. *cwd* can be a :class:`str` and
470 :term:`path-like <path-like object>` object. In particular, the function
471 looks for *executable* (or for the first item in *args*) relative to *cwd*
472 if the executable path is a relative path.
473
474 .. versionchanged:: 3.6
475 *cwd* parameter accepts a :term:`path-like object`.
Georg Brandl116aa622007-08-15 14:28:22 +0000476
Serhiy Storchakafbc1c262013-11-29 12:17:13 +0200477 If *restore_signals* is true (the default) all signals that Python has set to
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000478 SIG_IGN are restored to SIG_DFL in the child process before the exec.
479 Currently this includes the SIGPIPE, SIGXFZ and SIGXFSZ signals.
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700480 (POSIX only)
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000481
482 .. versionchanged:: 3.2
483 *restore_signals* was added.
484
Serhiy Storchakafbc1c262013-11-29 12:17:13 +0200485 If *start_new_session* is true the setsid() system call will be made in the
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700486 child process prior to the execution of the subprocess. (POSIX only)
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000487
488 .. versionchanged:: 3.2
489 *start_new_session* was added.
490
Christian Heimesa342c012008-04-20 21:01:16 +0000491 If *env* is not ``None``, it must be a mapping that defines the environment
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000492 variables for the new process; these are used instead of the default
493 behavior of inheriting the current process' environment.
Georg Brandl116aa622007-08-15 14:28:22 +0000494
R. David Murray1055e892009-04-16 18:15:32 +0000495 .. note::
R. David Murrayf4ac1492009-04-15 22:35:15 +0000496
Georg Brandl2708f3a2009-12-20 14:38:23 +0000497 If specified, *env* must provide any variables required for the program to
498 execute. On Windows, in order to run a `side-by-side assembly`_ the
499 specified *env* **must** include a valid :envvar:`SystemRoot`.
R. David Murrayf4ac1492009-04-15 22:35:15 +0000500
Georg Brandl5d941342016-02-26 19:37:12 +0100501 .. _side-by-side assembly: https://en.wikipedia.org/wiki/Side-by-Side_Assembly
R. David Murray1055e892009-04-16 18:15:32 +0000502
Steve Dower050acae2016-09-06 20:16:17 -0700503 If *encoding* or *errors* are specified, the file objects *stdin*, *stdout*
504 and *stderr* are opened in text mode with the specified encoding and
505 *errors*, as described above in :ref:`frequently-used-arguments`. If
506 *universal_newlines* is ``True``, they are opened in text mode with default
507 encoding. Otherwise, they are opened as binary streams.
508
509 .. versionadded:: 3.6
510 *encoding* and *errors* were added.
Georg Brandl116aa622007-08-15 14:28:22 +0000511
Brian Curtine6242d72011-04-29 22:17:51 -0500512 If given, *startupinfo* will be a :class:`STARTUPINFO` object, which is
513 passed to the underlying ``CreateProcess`` function.
Brian Curtin30401932011-04-29 22:20:57 -0500514 *creationflags*, if given, can be :data:`CREATE_NEW_CONSOLE` or
515 :data:`CREATE_NEW_PROCESS_GROUP`. (Windows only)
Georg Brandl116aa622007-08-15 14:28:22 +0000516
Gregory P. Smith6b657452011-05-11 21:42:08 -0700517 Popen objects are supported as context managers via the :keyword:`with` statement:
518 on exit, standard file descriptors are closed, and the process is waited for.
Brian Curtin79cdb662010-12-03 02:46:02 +0000519 ::
520
521 with Popen(["ifconfig"], stdout=PIPE) as proc:
522 log.write(proc.stdout.read())
523
524 .. versionchanged:: 3.2
525 Added context manager support.
526
Victor Stinner5a48e212016-05-20 12:11:15 +0200527 .. versionchanged:: 3.6
528 Popen destructor now emits a :exc:`ResourceWarning` warning if the child
529 process is still running.
530
Georg Brandl116aa622007-08-15 14:28:22 +0000531
Georg Brandl116aa622007-08-15 14:28:22 +0000532Exceptions
533^^^^^^^^^^
534
535Exceptions raised in the child process, before the new program has started to
536execute, will be re-raised in the parent. Additionally, the exception object
537will have one extra attribute called :attr:`child_traceback`, which is a string
Georg Brandl81675612010-08-26 14:30:56 +0000538containing traceback information from the child's point of view.
Georg Brandl116aa622007-08-15 14:28:22 +0000539
540The most common exception raised is :exc:`OSError`. This occurs, for example,
541when trying to execute a non-existent file. Applications should prepare for
542:exc:`OSError` exceptions.
543
544A :exc:`ValueError` will be raised if :class:`Popen` is called with invalid
545arguments.
546
Nick Coghlanc29248f2011-11-08 20:49:23 +1000547:func:`check_call` and :func:`check_output` will raise
548:exc:`CalledProcessError` if the called process returns a non-zero return
549code.
Georg Brandl116aa622007-08-15 14:28:22 +0000550
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400551All of the functions and methods that accept a *timeout* parameter, such as
552:func:`call` and :meth:`Popen.communicate` will raise :exc:`TimeoutExpired` if
553the timeout expires before the process exits.
554
Ronald Oussorenc1577902011-03-16 10:03:10 -0400555Exceptions defined in this module all inherit from :exc:`SubprocessError`.
Gregory P. Smith54d412e2011-03-14 14:08:43 -0400556
557 .. versionadded:: 3.3
558 The :exc:`SubprocessError` base class was added.
559
Georg Brandl116aa622007-08-15 14:28:22 +0000560
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700561Security Considerations
562-----------------------
Georg Brandl116aa622007-08-15 14:28:22 +0000563
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700564Unlike some other popen functions, this implementation will never
565implicitly call a system shell. This means that all characters,
566including shell metacharacters, can safely be passed to child processes.
567If the shell is invoked explicitly, via ``shell=True``, it is the application's
568responsibility to ensure that all whitespace and metacharacters are
569quoted appropriately to avoid
Georg Brandl5d941342016-02-26 19:37:12 +0100570`shell injection <https://en.wikipedia.org/wiki/Shell_injection#Shell_injection>`_
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700571vulnerabilities.
572
573When using ``shell=True``, the :func:`shlex.quote` function can be
574used to properly escape whitespace and shell metacharacters in strings
575that are going to be used to construct shell commands.
Georg Brandl116aa622007-08-15 14:28:22 +0000576
577
578Popen Objects
579-------------
580
581Instances of the :class:`Popen` class have the following methods:
582
583
584.. method:: Popen.poll()
585
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +0300586 Check if child process has terminated. Set and return
587 :attr:`~Popen.returncode` attribute.
Georg Brandl116aa622007-08-15 14:28:22 +0000588
589
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400590.. method:: Popen.wait(timeout=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000591
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +0300592 Wait for child process to terminate. Set and return
593 :attr:`~Popen.returncode` attribute.
Georg Brandl116aa622007-08-15 14:28:22 +0000594
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400595 If the process does not terminate after *timeout* seconds, raise a
596 :exc:`TimeoutExpired` exception. It is safe to catch this exception and
597 retry the wait.
598
Victor Stinner07171242014-02-24 13:18:47 +0100599 .. note::
600
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700601 This will deadlock when using ``stdout=PIPE`` or ``stderr=PIPE``
602 and the child process generates enough output to a pipe such that
603 it blocks waiting for the OS pipe buffer to accept more data.
604 Use :meth:`Popen.communicate` when using pipes to avoid that.
605
606 .. note::
607
Victor Stinner07171242014-02-24 13:18:47 +0100608 The function is implemented using a busy loop (non-blocking call and
609 short sleeps). Use the :mod:`asyncio` module for an asynchronous wait:
610 see :class:`asyncio.create_subprocess_exec`.
611
Reid Kleckner28f13032011-03-14 12:36:53 -0400612 .. versionchanged:: 3.3
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400613 *timeout* was added.
Georg Brandl116aa622007-08-15 14:28:22 +0000614
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400615.. method:: Popen.communicate(input=None, timeout=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000616
617 Interact with process: Send data to stdin. Read data from stdout and stderr,
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400618 until end-of-file is reached. Wait for process to terminate. The optional
Gregory P. Smitha454ef62011-05-22 22:29:49 -0700619 *input* argument should be data to be sent to the child process, or
Steve Dower050acae2016-09-06 20:16:17 -0700620 ``None``, if no data should be sent to the child. If streams were opened in
621 text mode, *input* must be a string. Otherwise, it must be bytes.
Georg Brandl116aa622007-08-15 14:28:22 +0000622
Victor Stinner39892052014-10-14 00:52:07 +0200623 :meth:`communicate` returns a tuple ``(stdout_data, stderr_data)``.
Steve Dower050acae2016-09-06 20:16:17 -0700624 The data will be strings if streams were opened in text mode; otherwise,
625 bytes.
Georg Brandl116aa622007-08-15 14:28:22 +0000626
Guido van Rossum0d3fb8a2007-11-26 23:23:18 +0000627 Note that if you want to send data to the process's stdin, you need to create
628 the Popen object with ``stdin=PIPE``. Similarly, to get anything other than
629 ``None`` in the result tuple, you need to give ``stdout=PIPE`` and/or
630 ``stderr=PIPE`` too.
631
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400632 If the process does not terminate after *timeout* seconds, a
633 :exc:`TimeoutExpired` exception will be raised. Catching this exception and
634 retrying communication will not lose any output.
635
636 The child process is not killed if the timeout expires, so in order to
637 cleanup properly a well-behaved application should kill the child process and
638 finish communication::
639
640 proc = subprocess.Popen(...)
641 try:
642 outs, errs = proc.communicate(timeout=15)
643 except TimeoutExpired:
644 proc.kill()
645 outs, errs = proc.communicate()
646
Christian Heimes7f044312008-01-06 17:05:40 +0000647 .. note::
Georg Brandl116aa622007-08-15 14:28:22 +0000648
Christian Heimes7f044312008-01-06 17:05:40 +0000649 The data read is buffered in memory, so do not use this method if the data
650 size is large or unlimited.
651
Reid Kleckner28f13032011-03-14 12:36:53 -0400652 .. versionchanged:: 3.3
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400653 *timeout* was added.
654
Georg Brandl116aa622007-08-15 14:28:22 +0000655
Christian Heimesa342c012008-04-20 21:01:16 +0000656.. method:: Popen.send_signal(signal)
657
658 Sends the signal *signal* to the child.
659
660 .. note::
661
Brian Curtineb24d742010-04-12 17:16:38 +0000662 On Windows, SIGTERM is an alias for :meth:`terminate`. CTRL_C_EVENT and
Senthil Kumaran916bd382010-10-15 12:55:19 +0000663 CTRL_BREAK_EVENT can be sent to processes started with a *creationflags*
Brian Curtineb24d742010-04-12 17:16:38 +0000664 parameter which includes `CREATE_NEW_PROCESS_GROUP`.
Christian Heimesa342c012008-04-20 21:01:16 +0000665
Christian Heimesa342c012008-04-20 21:01:16 +0000666
667.. method:: Popen.terminate()
668
669 Stop the child. On Posix OSs the method sends SIGTERM to the
Georg Brandl60203b42010-10-06 10:11:56 +0000670 child. On Windows the Win32 API function :c:func:`TerminateProcess` is called
Christian Heimesa342c012008-04-20 21:01:16 +0000671 to stop the child.
672
Christian Heimesa342c012008-04-20 21:01:16 +0000673
674.. method:: Popen.kill()
675
676 Kills the child. On Posix OSs the function sends SIGKILL to the child.
677 On Windows :meth:`kill` is an alias for :meth:`terminate`.
678
Christian Heimesa342c012008-04-20 21:01:16 +0000679
Georg Brandl116aa622007-08-15 14:28:22 +0000680The following attributes are also available:
681
Gregory P. Smith024c5ee2014-04-29 11:33:23 -0700682.. attribute:: Popen.args
683
684 The *args* argument as it was passed to :class:`Popen` -- a
685 sequence of program arguments or else a single string.
686
687 .. versionadded:: 3.3
Georg Brandl734e2682008-08-12 08:18:18 +0000688
Georg Brandl116aa622007-08-15 14:28:22 +0000689.. attribute:: Popen.stdin
690
Benjamin Peterson3d8814e2014-01-18 00:45:56 -0500691 If the *stdin* argument was :data:`PIPE`, this attribute is a writeable
Steve Dower050acae2016-09-06 20:16:17 -0700692 stream object as returned by :func:`open`. If the *encoding* or *errors*
693 arguments were specified or the *universal_newlines* argument was ``True``,
694 the stream is a text stream, otherwise it is a byte stream. If the *stdin*
695 argument was not :data:`PIPE`, this attribute is ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000696
697
698.. attribute:: Popen.stdout
699
Benjamin Peterson3d8814e2014-01-18 00:45:56 -0500700 If the *stdout* argument was :data:`PIPE`, this attribute is a readable
701 stream object as returned by :func:`open`. Reading from the stream provides
Steve Dower050acae2016-09-06 20:16:17 -0700702 output from the child process. If the *encoding* or *errors* arguments were
703 specified or the *universal_newlines* argument was ``True``, the stream is a
704 text stream, otherwise it is a byte stream. If the *stdout* argument was not
705 :data:`PIPE`, this attribute is ``None``.
Benjamin Petersonaf69fe22014-01-18 00:49:04 -0500706
Georg Brandl116aa622007-08-15 14:28:22 +0000707
708.. attribute:: Popen.stderr
709
Benjamin Peterson3d8814e2014-01-18 00:45:56 -0500710 If the *stderr* argument was :data:`PIPE`, this attribute is a readable
711 stream object as returned by :func:`open`. Reading from the stream provides
Steve Dower050acae2016-09-06 20:16:17 -0700712 error output from the child process. If the *encoding* or *errors* arguments
713 were specified or the *universal_newlines* argument was ``True``, the stream
714 is a text stream, otherwise it is a byte stream. If the *stderr* argument was
715 not :data:`PIPE`, this attribute is ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000716
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700717.. warning::
718
719 Use :meth:`~Popen.communicate` rather than :attr:`.stdin.write <Popen.stdin>`,
720 :attr:`.stdout.read <Popen.stdout>` or :attr:`.stderr.read <Popen.stderr>` to avoid
721 deadlocks due to any of the other OS pipe buffers filling up and blocking the
722 child process.
723
Georg Brandl116aa622007-08-15 14:28:22 +0000724
725.. attribute:: Popen.pid
726
727 The process ID of the child process.
728
Georg Brandl58bfdca2010-03-21 09:50:49 +0000729 Note that if you set the *shell* argument to ``True``, this is the process ID
730 of the spawned shell.
731
Georg Brandl116aa622007-08-15 14:28:22 +0000732
733.. attribute:: Popen.returncode
734
Christian Heimes7f044312008-01-06 17:05:40 +0000735 The child return code, set by :meth:`poll` and :meth:`wait` (and indirectly
736 by :meth:`communicate`). A ``None`` value indicates that the process
737 hasn't terminated yet.
Georg Brandl48310cd2009-01-03 21:18:54 +0000738
Christian Heimes7f044312008-01-06 17:05:40 +0000739 A negative value ``-N`` indicates that the child was terminated by signal
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700740 ``N`` (POSIX only).
Georg Brandl116aa622007-08-15 14:28:22 +0000741
742
Brian Curtine6242d72011-04-29 22:17:51 -0500743Windows Popen Helpers
744---------------------
745
746The :class:`STARTUPINFO` class and following constants are only available
747on Windows.
748
Berker Peksagf5184742017-03-01 12:51:55 +0300749.. class:: STARTUPINFO(*, dwFlags=0, hStdInput=None, hStdOutput=None, \
750 hStdError=None, wShowWindow=0)
Brian Curtin73365dd2011-04-29 22:18:33 -0500751
Brian Curtine6242d72011-04-29 22:17:51 -0500752 Partial support of the Windows
Georg Brandl5d941342016-02-26 19:37:12 +0100753 `STARTUPINFO <https://msdn.microsoft.com/en-us/library/ms686331(v=vs.85).aspx>`__
Berker Peksagf5184742017-03-01 12:51:55 +0300754 structure is used for :class:`Popen` creation. The following attributes can
755 be set by passing them as keyword-only arguments.
756
757 .. versionchanged:: 3.7
758 Keyword-only argument support was added.
Brian Curtine6242d72011-04-29 22:17:51 -0500759
760 .. attribute:: dwFlags
761
Senthil Kumarana6bac952011-07-04 11:28:30 -0700762 A bit field that determines whether certain :class:`STARTUPINFO`
763 attributes are used when the process creates a window. ::
Brian Curtine6242d72011-04-29 22:17:51 -0500764
765 si = subprocess.STARTUPINFO()
766 si.dwFlags = subprocess.STARTF_USESTDHANDLES | subprocess.STARTF_USESHOWWINDOW
767
768 .. attribute:: hStdInput
769
Senthil Kumarana6bac952011-07-04 11:28:30 -0700770 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
771 is the standard input handle for the process. If
772 :data:`STARTF_USESTDHANDLES` is not specified, the default for standard
773 input is the keyboard buffer.
Brian Curtine6242d72011-04-29 22:17:51 -0500774
775 .. attribute:: hStdOutput
776
Senthil Kumarana6bac952011-07-04 11:28:30 -0700777 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
778 is the standard output handle for the process. Otherwise, this attribute
779 is ignored and the default for standard output is the console window's
Brian Curtine6242d72011-04-29 22:17:51 -0500780 buffer.
781
782 .. attribute:: hStdError
783
Senthil Kumarana6bac952011-07-04 11:28:30 -0700784 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
785 is the standard error handle for the process. Otherwise, this attribute is
Brian Curtine6242d72011-04-29 22:17:51 -0500786 ignored and the default for standard error is the console window's buffer.
787
788 .. attribute:: wShowWindow
789
Senthil Kumarana6bac952011-07-04 11:28:30 -0700790 If :attr:`dwFlags` specifies :data:`STARTF_USESHOWWINDOW`, this attribute
Brian Curtine6242d72011-04-29 22:17:51 -0500791 can be any of the values that can be specified in the ``nCmdShow``
792 parameter for the
Georg Brandl5d941342016-02-26 19:37:12 +0100793 `ShowWindow <https://msdn.microsoft.com/en-us/library/ms633548(v=vs.85).aspx>`__
Senthil Kumarana6bac952011-07-04 11:28:30 -0700794 function, except for ``SW_SHOWDEFAULT``. Otherwise, this attribute is
Brian Curtine6242d72011-04-29 22:17:51 -0500795 ignored.
Brian Curtin73365dd2011-04-29 22:18:33 -0500796
Brian Curtine6242d72011-04-29 22:17:51 -0500797 :data:`SW_HIDE` is provided for this attribute. It is used when
798 :class:`Popen` is called with ``shell=True``.
799
800
801Constants
802^^^^^^^^^
803
804The :mod:`subprocess` module exposes the following constants.
805
806.. data:: STD_INPUT_HANDLE
807
808 The standard input device. Initially, this is the console input buffer,
809 ``CONIN$``.
810
811.. data:: STD_OUTPUT_HANDLE
812
813 The standard output device. Initially, this is the active console screen
814 buffer, ``CONOUT$``.
815
816.. data:: STD_ERROR_HANDLE
817
818 The standard error device. Initially, this is the active console screen
819 buffer, ``CONOUT$``.
820
821.. data:: SW_HIDE
822
823 Hides the window. Another window will be activated.
824
825.. data:: STARTF_USESTDHANDLES
826
827 Specifies that the :attr:`STARTUPINFO.hStdInput`,
Senthil Kumarana6bac952011-07-04 11:28:30 -0700828 :attr:`STARTUPINFO.hStdOutput`, and :attr:`STARTUPINFO.hStdError` attributes
Brian Curtine6242d72011-04-29 22:17:51 -0500829 contain additional information.
830
831.. data:: STARTF_USESHOWWINDOW
832
Senthil Kumarana6bac952011-07-04 11:28:30 -0700833 Specifies that the :attr:`STARTUPINFO.wShowWindow` attribute contains
Brian Curtine6242d72011-04-29 22:17:51 -0500834 additional information.
835
836.. data:: CREATE_NEW_CONSOLE
837
838 The new process has a new console, instead of inheriting its parent's
839 console (the default).
Brian Curtin73365dd2011-04-29 22:18:33 -0500840
Brian Curtin30401932011-04-29 22:20:57 -0500841.. data:: CREATE_NEW_PROCESS_GROUP
842
843 A :class:`Popen` ``creationflags`` parameter to specify that a new process
844 group will be created. This flag is necessary for using :func:`os.kill`
845 on the subprocess.
846
847 This flag is ignored if :data:`CREATE_NEW_CONSOLE` is specified.
848
Gregory P. Smith6e730002015-04-14 16:14:25 -0700849.. _call-function-trio:
850
851Older high-level API
852--------------------
853
854Prior to Python 3.5, these three functions comprised the high level API to
855subprocess. You can now use :func:`run` in many cases, but lots of existing code
856calls these functions.
857
Alex Gaynor368cf1d2017-05-25 22:28:17 -0400858.. function:: call(args, *, stdin=None, stdout=None, stderr=None, shell=False, cwd=None, timeout=None)
Gregory P. Smith6e730002015-04-14 16:14:25 -0700859
860 Run the command described by *args*. Wait for command to complete, then
Berker Peksagbf1d4b62015-07-25 14:27:07 +0300861 return the :attr:`~Popen.returncode` attribute.
Gregory P. Smith6e730002015-04-14 16:14:25 -0700862
863 This is equivalent to::
864
865 run(...).returncode
866
867 (except that the *input* and *check* parameters are not supported)
868
Berker Peksagbf1d4b62015-07-25 14:27:07 +0300869 The arguments shown above are merely the most
870 common ones. The full function signature is largely the
871 same as that of the :class:`Popen` constructor - this function passes all
872 supplied arguments other than *timeout* directly through to that interface.
873
Gregory P. Smith6e730002015-04-14 16:14:25 -0700874 .. note::
875
876 Do not use ``stdout=PIPE`` or ``stderr=PIPE`` with this
877 function. The child process will block if it generates enough
878 output to a pipe to fill up the OS pipe buffer as the pipes are
879 not being read from.
880
881 .. versionchanged:: 3.3
882 *timeout* was added.
883
Alex Gaynor368cf1d2017-05-25 22:28:17 -0400884.. function:: check_call(args, *, stdin=None, stdout=None, stderr=None, shell=False, cwd=None, timeout=None)
Gregory P. Smith6e730002015-04-14 16:14:25 -0700885
886 Run command with arguments. Wait for command to complete. If the return
887 code was zero then return, otherwise raise :exc:`CalledProcessError`. The
888 :exc:`CalledProcessError` object will have the return code in the
889 :attr:`~CalledProcessError.returncode` attribute.
890
891 This is equivalent to::
892
893 run(..., check=True)
894
895 (except that the *input* parameter is not supported)
896
Berker Peksagbf1d4b62015-07-25 14:27:07 +0300897 The arguments shown above are merely the most
898 common ones. The full function signature is largely the
899 same as that of the :class:`Popen` constructor - this function passes all
900 supplied arguments other than *timeout* directly through to that interface.
901
Gregory P. Smith6e730002015-04-14 16:14:25 -0700902 .. note::
903
904 Do not use ``stdout=PIPE`` or ``stderr=PIPE`` with this
905 function. The child process will block if it generates enough
906 output to a pipe to fill up the OS pipe buffer as the pipes are
907 not being read from.
908
909 .. versionchanged:: 3.3
910 *timeout* was added.
911
912
Steve Dower050acae2016-09-06 20:16:17 -0700913.. function:: check_output(args, *, stdin=None, stderr=None, shell=False, \
Alex Gaynor368cf1d2017-05-25 22:28:17 -0400914 cwd=None, encoding=None, errors=None, \
Steve Dower050acae2016-09-06 20:16:17 -0700915 universal_newlines=False, timeout=None)
Gregory P. Smith6e730002015-04-14 16:14:25 -0700916
917 Run command with arguments and return its output.
918
919 If the return code was non-zero it raises a :exc:`CalledProcessError`. The
920 :exc:`CalledProcessError` object will have the return code in the
921 :attr:`~CalledProcessError.returncode` attribute and any output in the
922 :attr:`~CalledProcessError.output` attribute.
923
924 This is equivalent to::
925
926 run(..., check=True, stdout=PIPE).stdout
927
Berker Peksagbf1d4b62015-07-25 14:27:07 +0300928 The arguments shown above are merely the most common ones.
929 The full function signature is largely the same as that of :func:`run` -
930 most arguments are passed directly through to that interface.
931 However, explicitly passing ``input=None`` to inherit the parent's
932 standard input file handle is not supported.
933
Gregory P. Smith6e730002015-04-14 16:14:25 -0700934 By default, this function will return the data as encoded bytes. The actual
935 encoding of the output data may depend on the command being invoked, so the
936 decoding to text will often need to be handled at the application level.
937
938 This behaviour may be overridden by setting *universal_newlines* to
939 ``True`` as described above in :ref:`frequently-used-arguments`.
940
941 To also capture standard error in the result, use
942 ``stderr=subprocess.STDOUT``::
943
944 >>> subprocess.check_output(
945 ... "ls non_existent_file; exit 0",
946 ... stderr=subprocess.STDOUT,
947 ... shell=True)
948 'ls: non_existent_file: No such file or directory\n'
949
950 .. versionadded:: 3.1
951
952 .. versionchanged:: 3.3
953 *timeout* was added.
954
955 .. versionchanged:: 3.4
Berker Peksagbf1d4b62015-07-25 14:27:07 +0300956 Support for the *input* keyword argument was added.
Brian Curtine6242d72011-04-29 22:17:51 -0500957
Benjamin Petersondcf97b92008-07-02 17:30:14 +0000958.. _subprocess-replacements:
959
Ezio Melotti402f75d2012-11-08 10:07:10 +0200960Replacing Older Functions with the :mod:`subprocess` Module
961-----------------------------------------------------------
Georg Brandl116aa622007-08-15 14:28:22 +0000962
Nick Coghlanc29248f2011-11-08 20:49:23 +1000963In this section, "a becomes b" means that b can be used as a replacement for a.
Georg Brandl116aa622007-08-15 14:28:22 +0000964
965.. note::
966
Nick Coghlanc29248f2011-11-08 20:49:23 +1000967 All "a" functions in this section fail (more or less) silently if the
968 executed program cannot be found; the "b" replacements raise :exc:`OSError`
969 instead.
Georg Brandl116aa622007-08-15 14:28:22 +0000970
Nick Coghlanc29248f2011-11-08 20:49:23 +1000971 In addition, the replacements using :func:`check_output` will fail with a
972 :exc:`CalledProcessError` if the requested operation produces a non-zero
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +0300973 return code. The output is still available as the
974 :attr:`~CalledProcessError.output` attribute of the raised exception.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000975
976In the following examples, we assume that the relevant functions have already
Ezio Melotti402f75d2012-11-08 10:07:10 +0200977been imported from the :mod:`subprocess` module.
Georg Brandl116aa622007-08-15 14:28:22 +0000978
979
980Replacing /bin/sh shell backquote
981^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
982
Martin Panter1050d2d2016-07-26 11:18:21 +0200983.. code-block:: bash
Georg Brandl116aa622007-08-15 14:28:22 +0000984
985 output=`mycmd myarg`
Georg Brandl116aa622007-08-15 14:28:22 +0000986
Martin Panter1050d2d2016-07-26 11:18:21 +0200987becomes::
988
989 output = check_output(["mycmd", "myarg"])
Georg Brandl116aa622007-08-15 14:28:22 +0000990
Benjamin Petersonf10a79a2008-10-11 00:49:57 +0000991Replacing shell pipeline
992^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000993
Martin Panter1050d2d2016-07-26 11:18:21 +0200994.. code-block:: bash
Georg Brandl116aa622007-08-15 14:28:22 +0000995
996 output=`dmesg | grep hda`
Martin Panter1050d2d2016-07-26 11:18:21 +0200997
998becomes::
999
Georg Brandl116aa622007-08-15 14:28:22 +00001000 p1 = Popen(["dmesg"], stdout=PIPE)
1001 p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
Gregory P. Smithe09d2f12011-02-05 21:47:25 +00001002 p1.stdout.close() # Allow p1 to receive a SIGPIPE if p2 exits.
Georg Brandl116aa622007-08-15 14:28:22 +00001003 output = p2.communicate()[0]
1004
Gregory P. Smithe09d2f12011-02-05 21:47:25 +00001005The p1.stdout.close() call after starting the p2 is important in order for p1
1006to receive a SIGPIPE if p2 exits before p1.
Georg Brandl116aa622007-08-15 14:28:22 +00001007
Nick Coghlanc29248f2011-11-08 20:49:23 +10001008Alternatively, for trusted input, the shell's own pipeline support may still
Martin Panter1050d2d2016-07-26 11:18:21 +02001009be used directly:
1010
1011.. code-block:: bash
Nick Coghlanc29248f2011-11-08 20:49:23 +10001012
1013 output=`dmesg | grep hda`
Martin Panter1050d2d2016-07-26 11:18:21 +02001014
1015becomes::
1016
Nick Coghlanc29248f2011-11-08 20:49:23 +10001017 output=check_output("dmesg | grep hda", shell=True)
1018
1019
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001020Replacing :func:`os.system`
1021^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +00001022
1023::
1024
1025 sts = os.system("mycmd" + " myarg")
Nick Coghlanc29248f2011-11-08 20:49:23 +10001026 # becomes
1027 sts = call("mycmd" + " myarg", shell=True)
Georg Brandl116aa622007-08-15 14:28:22 +00001028
1029Notes:
1030
1031* Calling the program through the shell is usually not required.
1032
Georg Brandl116aa622007-08-15 14:28:22 +00001033A more realistic example would look like this::
1034
1035 try:
1036 retcode = call("mycmd" + " myarg", shell=True)
1037 if retcode < 0:
Collin Winterc79461b2007-09-01 23:34:30 +00001038 print("Child was terminated by signal", -retcode, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +00001039 else:
Collin Winterc79461b2007-09-01 23:34:30 +00001040 print("Child returned", retcode, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +00001041 except OSError as e:
Collin Winterc79461b2007-09-01 23:34:30 +00001042 print("Execution failed:", e, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +00001043
1044
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001045Replacing the :func:`os.spawn <os.spawnl>` family
1046^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +00001047
1048P_NOWAIT example::
1049
1050 pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg")
1051 ==>
1052 pid = Popen(["/bin/mycmd", "myarg"]).pid
1053
1054P_WAIT example::
1055
1056 retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg")
1057 ==>
1058 retcode = call(["/bin/mycmd", "myarg"])
1059
1060Vector example::
1061
1062 os.spawnvp(os.P_NOWAIT, path, args)
1063 ==>
1064 Popen([path] + args[1:])
1065
1066Environment example::
1067
1068 os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env)
1069 ==>
1070 Popen(["/bin/mycmd", "myarg"], env={"PATH": "/usr/bin"})
1071
1072
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001073
1074Replacing :func:`os.popen`, :func:`os.popen2`, :func:`os.popen3`
1075^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +00001076
1077::
1078
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001079 (child_stdin, child_stdout) = os.popen2(cmd, mode, bufsize)
Georg Brandl116aa622007-08-15 14:28:22 +00001080 ==>
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001081 p = Popen(cmd, shell=True, bufsize=bufsize,
1082 stdin=PIPE, stdout=PIPE, close_fds=True)
1083 (child_stdin, child_stdout) = (p.stdin, p.stdout)
Georg Brandl116aa622007-08-15 14:28:22 +00001084
1085::
1086
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001087 (child_stdin,
1088 child_stdout,
1089 child_stderr) = os.popen3(cmd, mode, bufsize)
Georg Brandl116aa622007-08-15 14:28:22 +00001090 ==>
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001091 p = Popen(cmd, shell=True, bufsize=bufsize,
1092 stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True)
1093 (child_stdin,
1094 child_stdout,
1095 child_stderr) = (p.stdin, p.stdout, p.stderr)
1096
1097::
1098
1099 (child_stdin, child_stdout_and_stderr) = os.popen4(cmd, mode, bufsize)
1100 ==>
1101 p = Popen(cmd, shell=True, bufsize=bufsize,
1102 stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True)
1103 (child_stdin, child_stdout_and_stderr) = (p.stdin, p.stdout)
1104
1105Return code handling translates as follows::
1106
1107 pipe = os.popen(cmd, 'w')
1108 ...
1109 rc = pipe.close()
Stefan Krahfc9e08d2010-07-14 10:16:11 +00001110 if rc is not None and rc >> 8:
Ezio Melotti985e24d2009-09-13 07:54:02 +00001111 print("There were some errors")
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001112 ==>
R David Murray17227a72015-09-04 10:01:19 -04001113 process = Popen(cmd, stdin=PIPE)
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001114 ...
1115 process.stdin.close()
1116 if process.wait() != 0:
Ezio Melotti985e24d2009-09-13 07:54:02 +00001117 print("There were some errors")
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001118
1119
1120Replacing functions from the :mod:`popen2` module
1121^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1122
1123.. note::
1124
1125 If the cmd argument to popen2 functions is a string, the command is executed
1126 through /bin/sh. If it is a list, the command is directly executed.
1127
1128::
1129
1130 (child_stdout, child_stdin) = popen2.popen2("somestring", bufsize, mode)
1131 ==>
R David Murrayae9d1932014-05-14 10:09:52 -04001132 p = Popen("somestring", shell=True, bufsize=bufsize,
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001133 stdin=PIPE, stdout=PIPE, close_fds=True)
1134 (child_stdout, child_stdin) = (p.stdout, p.stdin)
1135
1136::
1137
1138 (child_stdout, child_stdin) = popen2.popen2(["mycmd", "myarg"], bufsize, mode)
1139 ==>
1140 p = Popen(["mycmd", "myarg"], bufsize=bufsize,
1141 stdin=PIPE, stdout=PIPE, close_fds=True)
1142 (child_stdout, child_stdin) = (p.stdout, p.stdin)
1143
1144:class:`popen2.Popen3` and :class:`popen2.Popen4` basically work as
1145:class:`subprocess.Popen`, except that:
1146
1147* :class:`Popen` raises an exception if the execution fails.
1148
1149* the *capturestderr* argument is replaced with the *stderr* argument.
1150
1151* ``stdin=PIPE`` and ``stdout=PIPE`` must be specified.
1152
1153* popen2 closes all file descriptors by default, but you have to specify
Gregory P. Smithf5604852010-12-13 06:45:02 +00001154 ``close_fds=True`` with :class:`Popen` to guarantee this behavior on
1155 all platforms or past Python versions.
Eli Bendersky046a7642011-04-15 07:23:26 +03001156
Nick Coghlanc29248f2011-11-08 20:49:23 +10001157
Nick Coghlanc29248f2011-11-08 20:49:23 +10001158Legacy Shell Invocation Functions
Nick Coghlan32e4a582011-11-08 21:50:58 +10001159---------------------------------
Nick Coghlanc29248f2011-11-08 20:49:23 +10001160
1161This module also provides the following legacy functions from the 2.x
1162``commands`` module. These operations implicitly invoke the system shell and
1163none of the guarantees described above regarding security and exception
1164handling consistency are valid for these functions.
1165
1166.. function:: getstatusoutput(cmd)
1167
1168 Return ``(status, output)`` of executing *cmd* in a shell.
1169
Tim Golden60798142013-11-05 12:57:25 +00001170 Execute the string *cmd* in a shell with :meth:`Popen.check_output` and
Steve Dower050acae2016-09-06 20:16:17 -07001171 return a 2-tuple ``(status, output)``. The locale encoding is used;
Tim Golden60798142013-11-05 12:57:25 +00001172 see the notes on :ref:`frequently-used-arguments` for more details.
Tim Golden3a2abb52013-11-03 18:24:50 +00001173
1174 A trailing newline is stripped from the output.
1175 The exit status for the command can be interpreted
Nick Coghlanc29248f2011-11-08 20:49:23 +10001176 according to the rules for the C function :c:func:`wait`. Example::
1177
1178 >>> subprocess.getstatusoutput('ls /bin/ls')
1179 (0, '/bin/ls')
1180 >>> subprocess.getstatusoutput('cat /bin/junk')
1181 (256, 'cat: /bin/junk: No such file or directory')
1182 >>> subprocess.getstatusoutput('/bin/junk')
1183 (256, 'sh: /bin/junk: not found')
1184
Gregory P. Smith8e0aa052014-05-11 13:28:35 -07001185 Availability: POSIX & Windows
R David Murray95b696a2014-03-07 20:04:17 -05001186
1187 .. versionchanged:: 3.3.4
1188 Windows support added
Nick Coghlanc29248f2011-11-08 20:49:23 +10001189
1190
1191.. function:: getoutput(cmd)
1192
1193 Return output (stdout and stderr) of executing *cmd* in a shell.
1194
1195 Like :func:`getstatusoutput`, except the exit status is ignored and the return
1196 value is a string containing the command's output. Example::
1197
1198 >>> subprocess.getoutput('ls /bin/ls')
1199 '/bin/ls'
1200
Gregory P. Smith8e0aa052014-05-11 13:28:35 -07001201 Availability: POSIX & Windows
R David Murray95b696a2014-03-07 20:04:17 -05001202
1203 .. versionchanged:: 3.3.4
1204 Windows support added
Nick Coghlanc29248f2011-11-08 20:49:23 +10001205
Nick Coghlan32e4a582011-11-08 21:50:58 +10001206
Eli Bendersky046a7642011-04-15 07:23:26 +03001207Notes
1208-----
1209
1210.. _converting-argument-sequence:
1211
1212Converting an argument sequence to a string on Windows
1213^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1214
1215On Windows, an *args* sequence is converted to a string that can be parsed
1216using the following rules (which correspond to the rules used by the MS C
1217runtime):
1218
12191. Arguments are delimited by white space, which is either a
1220 space or a tab.
1221
12222. A string surrounded by double quotation marks is
1223 interpreted as a single argument, regardless of white space
1224 contained within. A quoted string can be embedded in an
1225 argument.
1226
12273. A double quotation mark preceded by a backslash is
1228 interpreted as a literal double quotation mark.
1229
12304. Backslashes are interpreted literally, unless they
1231 immediately precede a double quotation mark.
1232
12335. If backslashes immediately precede a double quotation mark,
1234 every pair of backslashes is interpreted as a literal
1235 backslash. If the number of backslashes is odd, the last
1236 backslash escapes the next double quotation mark as
1237 described in rule 3.
1238
Eli Benderskyd2112312011-04-15 07:26:28 +03001239
Éric Araujo9bce3112011-07-27 18:29:31 +02001240.. seealso::
1241
1242 :mod:`shlex`
1243 Module which provides function to parse and escape command lines.