blob: 4fef6ea3f0e8f6bcefbbc0fa3c755f3d6e89cb8e [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`subprocess` --- Subprocess management
2===========================================
3
4.. module:: subprocess
5 :synopsis: Subprocess management.
6.. moduleauthor:: Peter Åstrand <astrand@lysator.liu.se>
7.. sectionauthor:: Peter Åstrand <astrand@lysator.liu.se>
8
9
Georg Brandl116aa622007-08-15 14:28:22 +000010The :mod:`subprocess` module allows you to spawn new processes, connect to their
11input/output/error pipes, and obtain their return codes. This module intends to
Benjamin Peterson5eea8a72014-03-12 21:41:35 -050012replace several older modules and functions::
Georg Brandl116aa622007-08-15 14:28:22 +000013
14 os.system
15 os.spawn*
Georg Brandl116aa622007-08-15 14:28:22 +000016
17Information about how the :mod:`subprocess` module can be used to replace these
18modules and functions can be found in the following sections.
19
Benjamin Peterson41181742008-07-02 20:22:54 +000020.. seealso::
21
22 :pep:`324` -- PEP proposing the subprocess module
23
Georg Brandl116aa622007-08-15 14:28:22 +000024
Ezio Melotti402f75d2012-11-08 10:07:10 +020025Using the :mod:`subprocess` Module
26----------------------------------
Georg Brandl116aa622007-08-15 14:28:22 +000027
Gregory P. Smith6e730002015-04-14 16:14:25 -070028The recommended approach to invoking subprocesses is to use the :func:`run`
29function for all use cases it can handle. For more advanced
Nick Coghlanc29248f2011-11-08 20:49:23 +100030use cases, the underlying :class:`Popen` interface can be used directly.
31
Gregory P. Smith6e730002015-04-14 16:14:25 -070032The :func:`run` function was added in Python 3.5; if you need to retain
33compatibility with older versions, see the :ref:`call-function-trio` section.
Nick Coghlanc29248f2011-11-08 20:49:23 +100034
Gregory P. Smith6e730002015-04-14 16:14:25 -070035
36.. function:: run(args, *, stdin=None, input=None, stdout=None, stderr=None,\
37 shell=False, timeout=None, check=False)
Nick Coghlanc29248f2011-11-08 20:49:23 +100038
39 Run the command described by *args*. Wait for command to complete, then
Gregory P. Smith6e730002015-04-14 16:14:25 -070040 return a :class:`CompletedProcess` instance.
Nick Coghlanc29248f2011-11-08 20:49:23 +100041
42 The arguments shown above are merely the most common ones, described below
Nick Coghlan217f05b2011-11-08 22:11:21 +100043 in :ref:`frequently-used-arguments` (hence the use of keyword-only notation
44 in the abbreviated signature). The full function signature is largely the
Gregory P. Smith6e730002015-04-14 16:14:25 -070045 same as that of the :class:`Popen` constructor - apart from *timeout*,
46 *input* and *check*, all the arguments to this function are passed through to
47 that interface.
Nick Coghlan217f05b2011-11-08 22:11:21 +100048
Gregory P. Smith6e730002015-04-14 16:14:25 -070049 This does not capture stdout or stderr by default. To do so, pass
50 :data:`PIPE` for the *stdout* and/or *stderr* arguments.
Nick Coghlanc29248f2011-11-08 20:49:23 +100051
Gregory P. Smith6e730002015-04-14 16:14:25 -070052 The *timeout* argument is passed to :meth:`Popen.communicate`. If the timeout
53 expires, the child process will be killed and waited for. The
Nick Coghlan217f05b2011-11-08 22:11:21 +100054 :exc:`TimeoutExpired` exception will be re-raised after the child process
55 has terminated.
Nick Coghlanc29248f2011-11-08 20:49:23 +100056
Serhiy Storchakafcd9f222013-04-22 20:20:54 +030057 The *input* argument is passed to :meth:`Popen.communicate` and thus to the
58 subprocess's stdin. If used it must be a byte sequence, or a string if
59 ``universal_newlines=True``. When used, the internal :class:`Popen` object
60 is automatically created with ``stdin=PIPE``, and the *stdin* argument may
61 not be used as well.
62
Gregory P. Smith6e730002015-04-14 16:14:25 -070063 If *check* is True, and the process exits with a non-zero exit code, a
64 :exc:`CalledProcessError` exception will be raised. Attributes of that
65 exception hold the arguments, the exit code, and stdout and stderr if they
66 were captured.
67
Nick Coghlanc29248f2011-11-08 20:49:23 +100068 Examples::
69
Gregory P. Smith6e730002015-04-14 16:14:25 -070070 >>> subprocess.run(["ls", "-l"]) # doesn't capture output
71 CompletedProcess(args=['ls', '-l'], returncode=0)
Nick Coghlanc29248f2011-11-08 20:49:23 +100072
Gregory P. Smith6e730002015-04-14 16:14:25 -070073 >>> subprocess.run("exit 1", shell=True, check=True)
Nick Coghlanc29248f2011-11-08 20:49:23 +100074 Traceback (most recent call last):
Gregory P. Smith6e730002015-04-14 16:14:25 -070075 ...
Nick Coghlanc29248f2011-11-08 20:49:23 +100076 subprocess.CalledProcessError: Command 'exit 1' returned non-zero exit status 1
77
Gregory P. Smith6e730002015-04-14 16:14:25 -070078 >>> subprocess.run(["ls", "-l", "/dev/null"], stdout=subprocess.PIPE)
79 CompletedProcess(args=['ls', '-l', '/dev/null'], returncode=0,
80 stdout=b'crw-rw-rw- 1 root root 1, 3 Jan 23 16:23 /dev/null\n')
Nick Coghlanc29248f2011-11-08 20:49:23 +100081
Gregory P. Smith6e730002015-04-14 16:14:25 -070082 .. versionadded:: 3.5
Nick Coghlanc29248f2011-11-08 20:49:23 +100083
Gregory P. Smith6e730002015-04-14 16:14:25 -070084.. class:: CompletedProcess
Nick Coghlanc29248f2011-11-08 20:49:23 +100085
Gregory P. Smith6e730002015-04-14 16:14:25 -070086 The return value from :func:`run`, representing a process that has finished.
Nick Coghlanc29248f2011-11-08 20:49:23 +100087
Gregory P. Smith6e730002015-04-14 16:14:25 -070088 .. attribute:: args
Nick Coghlanc29248f2011-11-08 20:49:23 +100089
Gregory P. Smith6e730002015-04-14 16:14:25 -070090 The arguments used to launch the process. This may be a list or a string.
Nick Coghlanc29248f2011-11-08 20:49:23 +100091
Gregory P. Smith6e730002015-04-14 16:14:25 -070092 .. attribute:: returncode
Serhiy Storchakafcd9f222013-04-22 20:20:54 +030093
Gregory P. Smith6e730002015-04-14 16:14:25 -070094 Exit status of the child process. Typically, an exit status of 0 indicates
95 that it ran successfully.
Nick Coghlan217f05b2011-11-08 22:11:21 +100096
Gregory P. Smith6e730002015-04-14 16:14:25 -070097 A negative value ``-N`` indicates that the child was terminated by signal
98 ``N`` (POSIX only).
99
100 .. attribute:: stdout
101
102 Captured stdout from the child process. A bytes sequence, or a string if
103 :func:`run` was called with ``universal_newlines=True``. None if stdout
104 was not captured.
105
106 If you ran the process with ``stderr=subprocess.STDOUT``, stdout and
107 stderr will be combined in this attribute, and :attr:`stderr` will be
108 None.
109
110 .. attribute:: stderr
111
112 Captured stderr from the child process. A bytes sequence, or a string if
113 :func:`run` was called with ``universal_newlines=True``. None if stderr
114 was not captured.
115
116 .. method:: check_returncode()
117
118 If :attr:`returncode` is non-zero, raise a :exc:`CalledProcessError`.
119
120 .. versionadded:: 3.5
Nick Coghlan217f05b2011-11-08 22:11:21 +1000121
122.. data:: DEVNULL
123
124 Special value that can be used as the *stdin*, *stdout* or *stderr* argument
125 to :class:`Popen` and indicates that the special file :data:`os.devnull`
126 will be used.
127
128 .. versionadded:: 3.3
129
Nick Coghlanc29248f2011-11-08 20:49:23 +1000130
131.. data:: PIPE
132
133 Special value that can be used as the *stdin*, *stdout* or *stderr* argument
134 to :class:`Popen` and indicates that a pipe to the standard stream should be
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700135 opened. Most useful with :meth:`Popen.communicate`.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000136
137
138.. data:: STDOUT
139
140 Special value that can be used as the *stderr* argument to :class:`Popen` and
141 indicates that standard error should go into the same handle as standard
142 output.
143
144
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300145.. exception:: SubprocessError
146
147 Base class for all other exceptions from this module.
148
149 .. versionadded:: 3.3
150
151
152.. exception:: TimeoutExpired
153
154 Subclass of :exc:`SubprocessError`, raised when a timeout expires
155 while waiting for a child process.
156
157 .. attribute:: cmd
158
159 Command that was used to spawn the child process.
160
161 .. attribute:: timeout
162
163 Timeout in seconds.
164
165 .. attribute:: output
166
Gregory P. Smith6e730002015-04-14 16:14:25 -0700167 Output of the child process if it was captured by :func:`run` or
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300168 :func:`check_output`. Otherwise, ``None``.
169
Gregory P. Smith6e730002015-04-14 16:14:25 -0700170 .. attribute:: stdout
171
172 Alias for output, for symmetry with :attr:`stderr`.
173
174 .. attribute:: stderr
175
176 Stderr output of the child process if it was captured by :func:`run`.
177 Otherwise, ``None``.
178
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300179 .. versionadded:: 3.3
180
Gregory P. Smith6e730002015-04-14 16:14:25 -0700181 .. versionchanged:: 3.5
182 *stdout* and *stderr* attributes added
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300183
184.. exception:: CalledProcessError
185
186 Subclass of :exc:`SubprocessError`, raised when a process run by
187 :func:`check_call` or :func:`check_output` returns a non-zero exit status.
188
189 .. attribute:: returncode
190
191 Exit status of the child process.
192
193 .. attribute:: cmd
194
195 Command that was used to spawn the child process.
196
197 .. attribute:: output
198
Gregory P. Smith6e730002015-04-14 16:14:25 -0700199 Output of the child process if it was captured by :func:`run` or
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300200 :func:`check_output`. Otherwise, ``None``.
201
Gregory P. Smith6e730002015-04-14 16:14:25 -0700202 .. attribute:: stdout
203
204 Alias for output, for symmetry with :attr:`stderr`.
205
206 .. attribute:: stderr
207
208 Stderr output of the child process if it was captured by :func:`run`.
209 Otherwise, ``None``.
210
211 .. versionchanged:: 3.5
212 *stdout* and *stderr* attributes added
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300213
214
Nick Coghlanc29248f2011-11-08 20:49:23 +1000215.. _frequently-used-arguments:
216
217Frequently Used Arguments
218^^^^^^^^^^^^^^^^^^^^^^^^^
219
220To support a wide variety of use cases, the :class:`Popen` constructor (and
221the convenience functions) accept a large number of optional arguments. For
222most typical use cases, many of these arguments can be safely left at their
223default values. The arguments that are most commonly needed are:
224
225 *args* is required for all calls and should be a string, or a sequence of
226 program arguments. Providing a sequence of arguments is generally
227 preferred, as it allows the module to take care of any required escaping
228 and quoting of arguments (e.g. to permit spaces in file names). If passing
229 a single string, either *shell* must be :const:`True` (see below) or else
230 the string must simply name the program to be executed without specifying
231 any arguments.
232
233 *stdin*, *stdout* and *stderr* specify the executed program's standard input,
234 standard output and standard error file handles, respectively. Valid values
Nick Coghlan217f05b2011-11-08 22:11:21 +1000235 are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive
236 integer), an existing file object, and ``None``. :data:`PIPE` indicates
237 that a new pipe to the child should be created. :data:`DEVNULL` indicates
238 that the special file :data:`os.devnull` will be used. With the default
239 settings of ``None``, no redirection will occur; the child's file handles
240 will be inherited from the parent. Additionally, *stderr* can be
241 :data:`STDOUT`, which indicates that the stderr data from the child
242 process should be captured into the same file handle as for *stdout*.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000243
R David Murray1b00f252012-08-15 10:43:58 -0400244 .. index::
245 single: universal newlines; subprocess module
246
Ronald Oussoren385521c2013-07-07 09:26:45 +0200247 If *universal_newlines* is ``False`` the file objects *stdin*, *stdout* and
248 *stderr* will be opened as binary streams, and no line ending conversion is
249 done.
250
251 If *universal_newlines* is ``True``, these file objects
252 will be opened as text streams in :term:`universal newlines` mode
R David Murray0689ce42012-08-15 11:13:31 -0400253 using the encoding returned by :func:`locale.getpreferredencoding(False)
Ronald Oussoren385521c2013-07-07 09:26:45 +0200254 <locale.getpreferredencoding>`. For *stdin*, line ending characters
R David Murray0689ce42012-08-15 11:13:31 -0400255 ``'\n'`` in the input will be converted to the default line separator
256 :data:`os.linesep`. For *stdout* and *stderr*, all line endings in the
257 output will be converted to ``'\n'``. For more information see the
258 documentation of the :class:`io.TextIOWrapper` class when the *newline*
259 argument to its constructor is ``None``.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000260
Andrew Svetlov50be4522012-08-13 22:09:04 +0300261 .. note::
262
Gregory P. Smith1f8a40b2013-03-20 18:32:03 -0700263 The newlines attribute of the file objects :attr:`Popen.stdin`,
264 :attr:`Popen.stdout` and :attr:`Popen.stderr` are not updated by
265 the :meth:`Popen.communicate` method.
Andrew Svetlov50be4522012-08-13 22:09:04 +0300266
267 If *shell* is ``True``, the specified command will be executed through
Ezio Melotti186d5232012-09-15 08:34:08 +0300268 the shell. This can be useful if you are using Python primarily for the
Nick Coghlanc29248f2011-11-08 20:49:23 +1000269 enhanced control flow it offers over most system shells and still want
Ezio Melotti186d5232012-09-15 08:34:08 +0300270 convenient access to other shell features such as shell pipes, filename
271 wildcards, environment variable expansion, and expansion of ``~`` to a
272 user's home directory. However, note that Python itself offers
273 implementations of many shell-like features (in particular, :mod:`glob`,
274 :mod:`fnmatch`, :func:`os.walk`, :func:`os.path.expandvars`,
275 :func:`os.path.expanduser`, and :mod:`shutil`).
Nick Coghlanc29248f2011-11-08 20:49:23 +1000276
Andrew Svetlov4805fa82012-08-13 22:11:14 +0300277 .. versionchanged:: 3.3
278 When *universal_newlines* is ``True``, the class uses the encoding
279 :func:`locale.getpreferredencoding(False) <locale.getpreferredencoding>`
280 instead of ``locale.getpreferredencoding()``. See the
281 :class:`io.TextIOWrapper` class for more information on this change.
282
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700283 .. note::
Nick Coghlanc29248f2011-11-08 20:49:23 +1000284
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700285 Read the `Security Considerations`_ section before using ``shell=True``.
Andrew Svetlovc2415eb2012-10-28 11:42:26 +0200286
Nick Coghlanc29248f2011-11-08 20:49:23 +1000287These options, along with all of the other options, are described in more
288detail in the :class:`Popen` constructor documentation.
289
290
Sandro Tosi1526ad12011-12-25 11:27:37 +0100291Popen Constructor
Sandro Tosi3e6c8142011-12-25 17:14:11 +0100292^^^^^^^^^^^^^^^^^
Nick Coghlanc29248f2011-11-08 20:49:23 +1000293
294The underlying process creation and management in this module is handled by
295the :class:`Popen` class. It offers a lot of flexibility so that developers
296are able to handle the less common cases not covered by the convenience
297functions.
Georg Brandl116aa622007-08-15 14:28:22 +0000298
299
Gregory P. Smitha1ed5392013-03-23 11:44:25 -0700300.. class:: Popen(args, bufsize=-1, executable=None, stdin=None, stdout=None, \
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700301 stderr=None, preexec_fn=None, close_fds=True, shell=False, \
302 cwd=None, env=None, universal_newlines=False, \
303 startupinfo=None, creationflags=0, restore_signals=True, \
304 start_new_session=False, pass_fds=())
Georg Brandl116aa622007-08-15 14:28:22 +0000305
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700306 Execute a child program in a new process. On POSIX, the class uses
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700307 :meth:`os.execvp`-like behavior to execute the child program. On Windows,
308 the class uses the Windows ``CreateProcess()`` function. The arguments to
309 :class:`Popen` are as follows.
Georg Brandl116aa622007-08-15 14:28:22 +0000310
Chris Jerdonek470ee392012-10-08 23:06:57 -0700311 *args* should be a sequence of program arguments or else a single string.
312 By default, the program to execute is the first item in *args* if *args* is
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700313 a sequence. If *args* is a string, the interpretation is
314 platform-dependent and described below. See the *shell* and *executable*
315 arguments for additional differences from the default behavior. Unless
316 otherwise stated, it is recommended to pass *args* as a sequence.
Georg Brandl116aa622007-08-15 14:28:22 +0000317
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700318 On POSIX, if *args* is a string, the string is interpreted as the name or
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700319 path of the program to execute. However, this can only be done if not
320 passing arguments to the program.
Georg Brandl116aa622007-08-15 14:28:22 +0000321
R. David Murray5973e4d2010-02-04 16:41:57 +0000322 .. note::
323
324 :meth:`shlex.split` can be useful when determining the correct
325 tokenization for *args*, especially in complex cases::
326
327 >>> import shlex, subprocess
R. David Murray73bc75b2010-02-05 16:25:12 +0000328 >>> command_line = input()
R. David Murray5973e4d2010-02-04 16:41:57 +0000329 /bin/vikings -input eggs.txt -output "spam spam.txt" -cmd "echo '$MONEY'"
330 >>> args = shlex.split(command_line)
331 >>> print(args)
332 ['/bin/vikings', '-input', 'eggs.txt', '-output', 'spam spam.txt', '-cmd', "echo '$MONEY'"]
333 >>> p = subprocess.Popen(args) # Success!
334
335 Note in particular that options (such as *-input*) and arguments (such
336 as *eggs.txt*) that are separated by whitespace in the shell go in separate
337 list elements, while arguments that need quoting or backslash escaping when
338 used in the shell (such as filenames containing spaces or the *echo* command
339 shown above) are single list elements.
340
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700341 On Windows, if *args* is a sequence, it will be converted to a string in a
342 manner described in :ref:`converting-argument-sequence`. This is because
343 the underlying ``CreateProcess()`` operates on strings.
Chris Jerdonek470ee392012-10-08 23:06:57 -0700344
345 The *shell* argument (which defaults to *False*) specifies whether to use
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700346 the shell as the program to execute. If *shell* is *True*, it is
347 recommended to pass *args* as a string rather than as a sequence.
Chris Jerdonek470ee392012-10-08 23:06:57 -0700348
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700349 On POSIX with ``shell=True``, the shell defaults to :file:`/bin/sh`. If
Chris Jerdonek470ee392012-10-08 23:06:57 -0700350 *args* is a string, the string specifies the command
351 to execute through the shell. This means that the string must be
R. David Murray5973e4d2010-02-04 16:41:57 +0000352 formatted exactly as it would be when typed at the shell prompt. This
353 includes, for example, quoting or backslash escaping filenames with spaces in
354 them. If *args* is a sequence, the first item specifies the command string, and
355 any additional items will be treated as additional arguments to the shell
Chris Jerdonek470ee392012-10-08 23:06:57 -0700356 itself. That is to say, :class:`Popen` does the equivalent of::
R. David Murray5973e4d2010-02-04 16:41:57 +0000357
358 Popen(['/bin/sh', '-c', args[0], args[1], ...])
Georg Brandl116aa622007-08-15 14:28:22 +0000359
Chris Jerdonek470ee392012-10-08 23:06:57 -0700360 On Windows with ``shell=True``, the :envvar:`COMSPEC` environment variable
361 specifies the default shell. The only time you need to specify
362 ``shell=True`` on Windows is when the command you wish to execute is built
363 into the shell (e.g. :command:`dir` or :command:`copy`). You do not need
364 ``shell=True`` to run a batch file or console-based executable.
Georg Brandl116aa622007-08-15 14:28:22 +0000365
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700366 .. note::
Chris Jerdonekcc32a682012-10-10 22:52:22 -0700367
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700368 Read the `Security Considerations`_ section before using ``shell=True``.
Chris Jerdonekcc32a682012-10-10 22:52:22 -0700369
Antoine Pitrouafe8d062014-09-21 21:10:56 +0200370 *bufsize* will be supplied as the corresponding argument to the
371 :func:`open` function when creating the stdin/stdout/stderr pipe
372 file objects:
373
374 - :const:`0` means unbuffered (read and write are one
375 system call and can return short)
376 - :const:`1` means line buffered
377 (only usable if ``universal_newlines=True`` i.e., in a text mode)
378 - any other positive value means use a buffer of approximately that
379 size
380 - negative bufsize (the default) means the system default of
381 io.DEFAULT_BUFFER_SIZE will be used.
Georg Brandl116aa622007-08-15 14:28:22 +0000382
Georg Brandl37b70bb2013-11-25 08:48:37 +0100383 .. versionchanged:: 3.3.1
Gregory P. Smitha1ed5392013-03-23 11:44:25 -0700384 *bufsize* now defaults to -1 to enable buffering by default to match the
Georg Brandl37b70bb2013-11-25 08:48:37 +0100385 behavior that most code expects. In versions prior to Python 3.2.4 and
386 3.3.1 it incorrectly defaulted to :const:`0` which was unbuffered
387 and allowed short reads. This was unintentional and did not match the
388 behavior of Python 2 as most code expected.
Antoine Pitrou4b876202010-06-02 17:10:49 +0000389
Chris Jerdonek470ee392012-10-08 23:06:57 -0700390 The *executable* argument specifies a replacement program to execute. It
391 is very seldom needed. When ``shell=False``, *executable* replaces the
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700392 program to execute specified by *args*. However, the original *args* is
393 still passed to the program. Most programs treat the program specified
394 by *args* as the command name, which can then be different from the program
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700395 actually executed. On POSIX, the *args* name
Chris Jerdonek470ee392012-10-08 23:06:57 -0700396 becomes the display name for the executable in utilities such as
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700397 :program:`ps`. If ``shell=True``, on POSIX the *executable* argument
Chris Jerdonek470ee392012-10-08 23:06:57 -0700398 specifies a replacement shell for the default :file:`/bin/sh`.
Georg Brandl116aa622007-08-15 14:28:22 +0000399
Nick Coghlanc29248f2011-11-08 20:49:23 +1000400 *stdin*, *stdout* and *stderr* specify the executed program's standard input,
Georg Brandlaf265f42008-12-07 15:06:20 +0000401 standard output and standard error file handles, respectively. Valid values
Ross Lagerwallba102ec2011-03-16 18:40:25 +0200402 are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive
403 integer), an existing :term:`file object`, and ``None``. :data:`PIPE`
404 indicates that a new pipe to the child should be created. :data:`DEVNULL`
Nick Coghlan217f05b2011-11-08 22:11:21 +1000405 indicates that the special file :data:`os.devnull` will be used. With the
406 default settings of ``None``, no redirection will occur; the child's file
407 handles will be inherited from the parent. Additionally, *stderr* can be
408 :data:`STDOUT`, which indicates that the stderr data from the applications
409 should be captured into the same file handle as for stdout.
Georg Brandl116aa622007-08-15 14:28:22 +0000410
411 If *preexec_fn* is set to a callable object, this object will be called in the
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000412 child process just before the child is executed.
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700413 (POSIX only)
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000414
415 .. warning::
416
417 The *preexec_fn* parameter is not safe to use in the presence of threads
418 in your application. The child process could deadlock before exec is
419 called.
420 If you must use it, keep it trivial! Minimize the number of libraries
421 you call into.
422
423 .. note::
424
425 If you need to modify the environment for the child use the *env*
426 parameter rather than doing it in a *preexec_fn*.
427 The *start_new_session* parameter can take the place of a previously
428 common use of *preexec_fn* to call os.setsid() in the child.
Georg Brandl116aa622007-08-15 14:28:22 +0000429
430 If *close_fds* is true, all file descriptors except :const:`0`, :const:`1` and
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700431 :const:`2` will be closed before the child process is executed. (POSIX only).
432 The default varies by platform: Always true on POSIX. On Windows it is
Gregory P. Smith8edd99d2010-12-14 13:43:30 +0000433 true when *stdin*/*stdout*/*stderr* are :const:`None`, false otherwise.
Gregory P. Smithd23047b2010-12-04 09:10:44 +0000434 On Windows, if *close_fds* is true then no handles will be inherited by the
Georg Brandl116aa622007-08-15 14:28:22 +0000435 child process. Note that on Windows, you cannot set *close_fds* to true and
436 also redirect the standard handles by setting *stdin*, *stdout* or *stderr*.
437
Gregory P. Smith8edd99d2010-12-14 13:43:30 +0000438 .. versionchanged:: 3.2
439 The default for *close_fds* was changed from :const:`False` to
440 what is described above.
441
442 *pass_fds* is an optional sequence of file descriptors to keep open
443 between the parent and child. Providing any *pass_fds* forces
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700444 *close_fds* to be :const:`True`. (POSIX only)
Gregory P. Smith8edd99d2010-12-14 13:43:30 +0000445
446 .. versionadded:: 3.2
447 The *pass_fds* parameter was added.
Georg Brandl116aa622007-08-15 14:28:22 +0000448
Chris Jerdonekec3ea942012-09-30 00:10:28 -0700449 If *cwd* is not ``None``, the function changes the working directory to
450 *cwd* before executing the child. In particular, the function looks for
451 *executable* (or for the first item in *args*) relative to *cwd* if the
452 executable path is a relative path.
Georg Brandl116aa622007-08-15 14:28:22 +0000453
Serhiy Storchakafbc1c262013-11-29 12:17:13 +0200454 If *restore_signals* is true (the default) all signals that Python has set to
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000455 SIG_IGN are restored to SIG_DFL in the child process before the exec.
456 Currently this includes the SIGPIPE, SIGXFZ and SIGXFSZ signals.
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700457 (POSIX only)
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000458
459 .. versionchanged:: 3.2
460 *restore_signals* was added.
461
Serhiy Storchakafbc1c262013-11-29 12:17:13 +0200462 If *start_new_session* is true the setsid() system call will be made in the
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700463 child process prior to the execution of the subprocess. (POSIX only)
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000464
465 .. versionchanged:: 3.2
466 *start_new_session* was added.
467
Christian Heimesa342c012008-04-20 21:01:16 +0000468 If *env* is not ``None``, it must be a mapping that defines the environment
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000469 variables for the new process; these are used instead of the default
470 behavior of inheriting the current process' environment.
Georg Brandl116aa622007-08-15 14:28:22 +0000471
R. David Murray1055e892009-04-16 18:15:32 +0000472 .. note::
R. David Murrayf4ac1492009-04-15 22:35:15 +0000473
Georg Brandl2708f3a2009-12-20 14:38:23 +0000474 If specified, *env* must provide any variables required for the program to
475 execute. On Windows, in order to run a `side-by-side assembly`_ the
476 specified *env* **must** include a valid :envvar:`SystemRoot`.
R. David Murrayf4ac1492009-04-15 22:35:15 +0000477
R. David Murray1055e892009-04-16 18:15:32 +0000478 .. _side-by-side assembly: http://en.wikipedia.org/wiki/Side-by-Side_Assembly
479
Andrew Svetlov50be4522012-08-13 22:09:04 +0300480 If *universal_newlines* is ``True``, the file objects *stdin*, *stdout*
R David Murray1b00f252012-08-15 10:43:58 -0400481 and *stderr* are opened as text streams in universal newlines mode, as
Ronald Oussorena6865052013-07-06 10:23:59 +0200482 described above in :ref:`frequently-used-arguments`, otherwise they are
483 opened as binary streams.
Georg Brandl116aa622007-08-15 14:28:22 +0000484
Brian Curtine6242d72011-04-29 22:17:51 -0500485 If given, *startupinfo* will be a :class:`STARTUPINFO` object, which is
486 passed to the underlying ``CreateProcess`` function.
Brian Curtin30401932011-04-29 22:20:57 -0500487 *creationflags*, if given, can be :data:`CREATE_NEW_CONSOLE` or
488 :data:`CREATE_NEW_PROCESS_GROUP`. (Windows only)
Georg Brandl116aa622007-08-15 14:28:22 +0000489
Gregory P. Smith6b657452011-05-11 21:42:08 -0700490 Popen objects are supported as context managers via the :keyword:`with` statement:
491 on exit, standard file descriptors are closed, and the process is waited for.
Brian Curtin79cdb662010-12-03 02:46:02 +0000492 ::
493
494 with Popen(["ifconfig"], stdout=PIPE) as proc:
495 log.write(proc.stdout.read())
496
497 .. versionchanged:: 3.2
498 Added context manager support.
499
Georg Brandl116aa622007-08-15 14:28:22 +0000500
Georg Brandl116aa622007-08-15 14:28:22 +0000501Exceptions
502^^^^^^^^^^
503
504Exceptions raised in the child process, before the new program has started to
505execute, will be re-raised in the parent. Additionally, the exception object
506will have one extra attribute called :attr:`child_traceback`, which is a string
Georg Brandl81675612010-08-26 14:30:56 +0000507containing traceback information from the child's point of view.
Georg Brandl116aa622007-08-15 14:28:22 +0000508
509The most common exception raised is :exc:`OSError`. This occurs, for example,
510when trying to execute a non-existent file. Applications should prepare for
511:exc:`OSError` exceptions.
512
513A :exc:`ValueError` will be raised if :class:`Popen` is called with invalid
514arguments.
515
Nick Coghlanc29248f2011-11-08 20:49:23 +1000516:func:`check_call` and :func:`check_output` will raise
517:exc:`CalledProcessError` if the called process returns a non-zero return
518code.
Georg Brandl116aa622007-08-15 14:28:22 +0000519
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400520All of the functions and methods that accept a *timeout* parameter, such as
521:func:`call` and :meth:`Popen.communicate` will raise :exc:`TimeoutExpired` if
522the timeout expires before the process exits.
523
Ronald Oussorenc1577902011-03-16 10:03:10 -0400524Exceptions defined in this module all inherit from :exc:`SubprocessError`.
Gregory P. Smith54d412e2011-03-14 14:08:43 -0400525
526 .. versionadded:: 3.3
527 The :exc:`SubprocessError` base class was added.
528
Georg Brandl116aa622007-08-15 14:28:22 +0000529
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700530Security Considerations
531-----------------------
Georg Brandl116aa622007-08-15 14:28:22 +0000532
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700533Unlike some other popen functions, this implementation will never
534implicitly call a system shell. This means that all characters,
535including shell metacharacters, can safely be passed to child processes.
536If the shell is invoked explicitly, via ``shell=True``, it is the application's
537responsibility to ensure that all whitespace and metacharacters are
538quoted appropriately to avoid
539`shell injection <http://en.wikipedia.org/wiki/Shell_injection#Shell_injection>`_
540vulnerabilities.
541
542When using ``shell=True``, the :func:`shlex.quote` function can be
543used to properly escape whitespace and shell metacharacters in strings
544that are going to be used to construct shell commands.
Georg Brandl116aa622007-08-15 14:28:22 +0000545
546
547Popen Objects
548-------------
549
550Instances of the :class:`Popen` class have the following methods:
551
552
553.. method:: Popen.poll()
554
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +0300555 Check if child process has terminated. Set and return
556 :attr:`~Popen.returncode` attribute.
Georg Brandl116aa622007-08-15 14:28:22 +0000557
558
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400559.. method:: Popen.wait(timeout=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000560
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +0300561 Wait for child process to terminate. Set and return
562 :attr:`~Popen.returncode` attribute.
Georg Brandl116aa622007-08-15 14:28:22 +0000563
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400564 If the process does not terminate after *timeout* seconds, raise a
565 :exc:`TimeoutExpired` exception. It is safe to catch this exception and
566 retry the wait.
567
Victor Stinner07171242014-02-24 13:18:47 +0100568 .. note::
569
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700570 This will deadlock when using ``stdout=PIPE`` or ``stderr=PIPE``
571 and the child process generates enough output to a pipe such that
572 it blocks waiting for the OS pipe buffer to accept more data.
573 Use :meth:`Popen.communicate` when using pipes to avoid that.
574
575 .. note::
576
Victor Stinner07171242014-02-24 13:18:47 +0100577 The function is implemented using a busy loop (non-blocking call and
578 short sleeps). Use the :mod:`asyncio` module for an asynchronous wait:
579 see :class:`asyncio.create_subprocess_exec`.
580
Reid Kleckner28f13032011-03-14 12:36:53 -0400581 .. versionchanged:: 3.3
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400582 *timeout* was added.
Georg Brandl116aa622007-08-15 14:28:22 +0000583
Gregory P. Smithbbe33352014-02-11 09:21:03 -0800584 .. deprecated:: 3.4
585
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700586 Do not use the *endtime* parameter. It is was unintentionally
587 exposed in 3.3 but was left undocumented as it was intended to be
588 private for internal use. Use *timeout* instead.
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400589
590.. method:: Popen.communicate(input=None, timeout=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000591
592 Interact with process: Send data to stdin. Read data from stdout and stderr,
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400593 until end-of-file is reached. Wait for process to terminate. The optional
Gregory P. Smitha454ef62011-05-22 22:29:49 -0700594 *input* argument should be data to be sent to the child process, or
595 ``None``, if no data should be sent to the child. The type of *input*
596 must be bytes or, if *universal_newlines* was ``True``, a string.
Georg Brandl116aa622007-08-15 14:28:22 +0000597
Victor Stinner39892052014-10-14 00:52:07 +0200598 :meth:`communicate` returns a tuple ``(stdout_data, stderr_data)``.
Andrew Kuchling4f7b0c32014-04-14 15:08:18 -0400599 The data will be bytes or, if *universal_newlines* was ``True``, strings.
Georg Brandl116aa622007-08-15 14:28:22 +0000600
Guido van Rossum0d3fb8a2007-11-26 23:23:18 +0000601 Note that if you want to send data to the process's stdin, you need to create
602 the Popen object with ``stdin=PIPE``. Similarly, to get anything other than
603 ``None`` in the result tuple, you need to give ``stdout=PIPE`` and/or
604 ``stderr=PIPE`` too.
605
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400606 If the process does not terminate after *timeout* seconds, a
607 :exc:`TimeoutExpired` exception will be raised. Catching this exception and
608 retrying communication will not lose any output.
609
610 The child process is not killed if the timeout expires, so in order to
611 cleanup properly a well-behaved application should kill the child process and
612 finish communication::
613
614 proc = subprocess.Popen(...)
615 try:
616 outs, errs = proc.communicate(timeout=15)
617 except TimeoutExpired:
618 proc.kill()
619 outs, errs = proc.communicate()
620
Christian Heimes7f044312008-01-06 17:05:40 +0000621 .. note::
Georg Brandl116aa622007-08-15 14:28:22 +0000622
Christian Heimes7f044312008-01-06 17:05:40 +0000623 The data read is buffered in memory, so do not use this method if the data
624 size is large or unlimited.
625
Reid Kleckner28f13032011-03-14 12:36:53 -0400626 .. versionchanged:: 3.3
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400627 *timeout* was added.
628
Georg Brandl116aa622007-08-15 14:28:22 +0000629
Christian Heimesa342c012008-04-20 21:01:16 +0000630.. method:: Popen.send_signal(signal)
631
632 Sends the signal *signal* to the child.
633
634 .. note::
635
Brian Curtineb24d742010-04-12 17:16:38 +0000636 On Windows, SIGTERM is an alias for :meth:`terminate`. CTRL_C_EVENT and
Senthil Kumaran916bd382010-10-15 12:55:19 +0000637 CTRL_BREAK_EVENT can be sent to processes started with a *creationflags*
Brian Curtineb24d742010-04-12 17:16:38 +0000638 parameter which includes `CREATE_NEW_PROCESS_GROUP`.
Christian Heimesa342c012008-04-20 21:01:16 +0000639
Christian Heimesa342c012008-04-20 21:01:16 +0000640
641.. method:: Popen.terminate()
642
643 Stop the child. On Posix OSs the method sends SIGTERM to the
Georg Brandl60203b42010-10-06 10:11:56 +0000644 child. On Windows the Win32 API function :c:func:`TerminateProcess` is called
Christian Heimesa342c012008-04-20 21:01:16 +0000645 to stop the child.
646
Christian Heimesa342c012008-04-20 21:01:16 +0000647
648.. method:: Popen.kill()
649
650 Kills the child. On Posix OSs the function sends SIGKILL to the child.
651 On Windows :meth:`kill` is an alias for :meth:`terminate`.
652
Christian Heimesa342c012008-04-20 21:01:16 +0000653
Georg Brandl116aa622007-08-15 14:28:22 +0000654The following attributes are also available:
655
Gregory P. Smith024c5ee2014-04-29 11:33:23 -0700656.. attribute:: Popen.args
657
658 The *args* argument as it was passed to :class:`Popen` -- a
659 sequence of program arguments or else a single string.
660
661 .. versionadded:: 3.3
Georg Brandl734e2682008-08-12 08:18:18 +0000662
Georg Brandl116aa622007-08-15 14:28:22 +0000663.. attribute:: Popen.stdin
664
Benjamin Peterson3d8814e2014-01-18 00:45:56 -0500665 If the *stdin* argument was :data:`PIPE`, this attribute is a writeable
666 stream object as returned by :func:`open`. If the *universal_newlines*
667 argument was ``True``, the stream is a text stream, otherwise it is a byte
668 stream. If the *stdin* argument was not :data:`PIPE`, this attribute is
669 ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000670
671
672.. attribute:: Popen.stdout
673
Benjamin Peterson3d8814e2014-01-18 00:45:56 -0500674 If the *stdout* argument was :data:`PIPE`, this attribute is a readable
675 stream object as returned by :func:`open`. Reading from the stream provides
676 output from the child process. If the *universal_newlines* argument was
677 ``True``, the stream is a text stream, otherwise it is a byte stream. If the
678 *stdout* argument was not :data:`PIPE`, this attribute is ``None``.
Benjamin Petersonaf69fe22014-01-18 00:49:04 -0500679
Georg Brandl116aa622007-08-15 14:28:22 +0000680
681.. attribute:: Popen.stderr
682
Benjamin Peterson3d8814e2014-01-18 00:45:56 -0500683 If the *stderr* argument was :data:`PIPE`, this attribute is a readable
684 stream object as returned by :func:`open`. Reading from the stream provides
685 error output from the child process. If the *universal_newlines* argument was
686 ``True``, the stream is a text stream, otherwise it is a byte stream. If the
687 *stderr* argument was not :data:`PIPE`, this attribute is ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000688
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700689.. warning::
690
691 Use :meth:`~Popen.communicate` rather than :attr:`.stdin.write <Popen.stdin>`,
692 :attr:`.stdout.read <Popen.stdout>` or :attr:`.stderr.read <Popen.stderr>` to avoid
693 deadlocks due to any of the other OS pipe buffers filling up and blocking the
694 child process.
695
Georg Brandl116aa622007-08-15 14:28:22 +0000696
697.. attribute:: Popen.pid
698
699 The process ID of the child process.
700
Georg Brandl58bfdca2010-03-21 09:50:49 +0000701 Note that if you set the *shell* argument to ``True``, this is the process ID
702 of the spawned shell.
703
Georg Brandl116aa622007-08-15 14:28:22 +0000704
705.. attribute:: Popen.returncode
706
Christian Heimes7f044312008-01-06 17:05:40 +0000707 The child return code, set by :meth:`poll` and :meth:`wait` (and indirectly
708 by :meth:`communicate`). A ``None`` value indicates that the process
709 hasn't terminated yet.
Georg Brandl48310cd2009-01-03 21:18:54 +0000710
Christian Heimes7f044312008-01-06 17:05:40 +0000711 A negative value ``-N`` indicates that the child was terminated by signal
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700712 ``N`` (POSIX only).
Georg Brandl116aa622007-08-15 14:28:22 +0000713
714
Brian Curtine6242d72011-04-29 22:17:51 -0500715Windows Popen Helpers
716---------------------
717
718The :class:`STARTUPINFO` class and following constants are only available
719on Windows.
720
721.. class:: STARTUPINFO()
Brian Curtin73365dd2011-04-29 22:18:33 -0500722
Brian Curtine6242d72011-04-29 22:17:51 -0500723 Partial support of the Windows
724 `STARTUPINFO <http://msdn.microsoft.com/en-us/library/ms686331(v=vs.85).aspx>`__
725 structure is used for :class:`Popen` creation.
726
727 .. attribute:: dwFlags
728
Senthil Kumarana6bac952011-07-04 11:28:30 -0700729 A bit field that determines whether certain :class:`STARTUPINFO`
730 attributes are used when the process creates a window. ::
Brian Curtine6242d72011-04-29 22:17:51 -0500731
732 si = subprocess.STARTUPINFO()
733 si.dwFlags = subprocess.STARTF_USESTDHANDLES | subprocess.STARTF_USESHOWWINDOW
734
735 .. attribute:: hStdInput
736
Senthil Kumarana6bac952011-07-04 11:28:30 -0700737 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
738 is the standard input handle for the process. If
739 :data:`STARTF_USESTDHANDLES` is not specified, the default for standard
740 input is the keyboard buffer.
Brian Curtine6242d72011-04-29 22:17:51 -0500741
742 .. attribute:: hStdOutput
743
Senthil Kumarana6bac952011-07-04 11:28:30 -0700744 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
745 is the standard output handle for the process. Otherwise, this attribute
746 is ignored and the default for standard output is the console window's
Brian Curtine6242d72011-04-29 22:17:51 -0500747 buffer.
748
749 .. attribute:: hStdError
750
Senthil Kumarana6bac952011-07-04 11:28:30 -0700751 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
752 is the standard error handle for the process. Otherwise, this attribute is
Brian Curtine6242d72011-04-29 22:17:51 -0500753 ignored and the default for standard error is the console window's buffer.
754
755 .. attribute:: wShowWindow
756
Senthil Kumarana6bac952011-07-04 11:28:30 -0700757 If :attr:`dwFlags` specifies :data:`STARTF_USESHOWWINDOW`, this attribute
Brian Curtine6242d72011-04-29 22:17:51 -0500758 can be any of the values that can be specified in the ``nCmdShow``
759 parameter for the
760 `ShowWindow <http://msdn.microsoft.com/en-us/library/ms633548(v=vs.85).aspx>`__
Senthil Kumarana6bac952011-07-04 11:28:30 -0700761 function, except for ``SW_SHOWDEFAULT``. Otherwise, this attribute is
Brian Curtine6242d72011-04-29 22:17:51 -0500762 ignored.
Brian Curtin73365dd2011-04-29 22:18:33 -0500763
Brian Curtine6242d72011-04-29 22:17:51 -0500764 :data:`SW_HIDE` is provided for this attribute. It is used when
765 :class:`Popen` is called with ``shell=True``.
766
767
768Constants
769^^^^^^^^^
770
771The :mod:`subprocess` module exposes the following constants.
772
773.. data:: STD_INPUT_HANDLE
774
775 The standard input device. Initially, this is the console input buffer,
776 ``CONIN$``.
777
778.. data:: STD_OUTPUT_HANDLE
779
780 The standard output device. Initially, this is the active console screen
781 buffer, ``CONOUT$``.
782
783.. data:: STD_ERROR_HANDLE
784
785 The standard error device. Initially, this is the active console screen
786 buffer, ``CONOUT$``.
787
788.. data:: SW_HIDE
789
790 Hides the window. Another window will be activated.
791
792.. data:: STARTF_USESTDHANDLES
793
794 Specifies that the :attr:`STARTUPINFO.hStdInput`,
Senthil Kumarana6bac952011-07-04 11:28:30 -0700795 :attr:`STARTUPINFO.hStdOutput`, and :attr:`STARTUPINFO.hStdError` attributes
Brian Curtine6242d72011-04-29 22:17:51 -0500796 contain additional information.
797
798.. data:: STARTF_USESHOWWINDOW
799
Senthil Kumarana6bac952011-07-04 11:28:30 -0700800 Specifies that the :attr:`STARTUPINFO.wShowWindow` attribute contains
Brian Curtine6242d72011-04-29 22:17:51 -0500801 additional information.
802
803.. data:: CREATE_NEW_CONSOLE
804
805 The new process has a new console, instead of inheriting its parent's
806 console (the default).
Brian Curtin73365dd2011-04-29 22:18:33 -0500807
Brian Curtin30401932011-04-29 22:20:57 -0500808.. data:: CREATE_NEW_PROCESS_GROUP
809
810 A :class:`Popen` ``creationflags`` parameter to specify that a new process
811 group will be created. This flag is necessary for using :func:`os.kill`
812 on the subprocess.
813
814 This flag is ignored if :data:`CREATE_NEW_CONSOLE` is specified.
815
Gregory P. Smith6e730002015-04-14 16:14:25 -0700816.. _call-function-trio:
817
818Older high-level API
819--------------------
820
821Prior to Python 3.5, these three functions comprised the high level API to
822subprocess. You can now use :func:`run` in many cases, but lots of existing code
823calls these functions.
824
825.. function:: call(args, *, stdin=None, stdout=None, stderr=None, shell=False, timeout=None)
826
827 Run the command described by *args*. Wait for command to complete, then
828 return the :attr:`returncode` attribute.
829
830 This is equivalent to::
831
832 run(...).returncode
833
834 (except that the *input* and *check* parameters are not supported)
835
836 .. note::
837
838 Do not use ``stdout=PIPE`` or ``stderr=PIPE`` with this
839 function. The child process will block if it generates enough
840 output to a pipe to fill up the OS pipe buffer as the pipes are
841 not being read from.
842
843 .. versionchanged:: 3.3
844 *timeout* was added.
845
846.. function:: check_call(args, *, stdin=None, stdout=None, stderr=None, shell=False, timeout=None)
847
848 Run command with arguments. Wait for command to complete. If the return
849 code was zero then return, otherwise raise :exc:`CalledProcessError`. The
850 :exc:`CalledProcessError` object will have the return code in the
851 :attr:`~CalledProcessError.returncode` attribute.
852
853 This is equivalent to::
854
855 run(..., check=True)
856
857 (except that the *input* parameter is not supported)
858
859 .. note::
860
861 Do not use ``stdout=PIPE`` or ``stderr=PIPE`` with this
862 function. The child process will block if it generates enough
863 output to a pipe to fill up the OS pipe buffer as the pipes are
864 not being read from.
865
866 .. versionchanged:: 3.3
867 *timeout* was added.
868
869
870.. function:: check_output(args, *, input=None, stdin=None, stderr=None, shell=False, universal_newlines=False, timeout=None)
871
872 Run command with arguments and return its output.
873
874 If the return code was non-zero it raises a :exc:`CalledProcessError`. The
875 :exc:`CalledProcessError` object will have the return code in the
876 :attr:`~CalledProcessError.returncode` attribute and any output in the
877 :attr:`~CalledProcessError.output` attribute.
878
879 This is equivalent to::
880
881 run(..., check=True, stdout=PIPE).stdout
882
883 By default, this function will return the data as encoded bytes. The actual
884 encoding of the output data may depend on the command being invoked, so the
885 decoding to text will often need to be handled at the application level.
886
887 This behaviour may be overridden by setting *universal_newlines* to
888 ``True`` as described above in :ref:`frequently-used-arguments`.
889
890 To also capture standard error in the result, use
891 ``stderr=subprocess.STDOUT``::
892
893 >>> subprocess.check_output(
894 ... "ls non_existent_file; exit 0",
895 ... stderr=subprocess.STDOUT,
896 ... shell=True)
897 'ls: non_existent_file: No such file or directory\n'
898
899 .. versionadded:: 3.1
900
901 .. versionchanged:: 3.3
902 *timeout* was added.
903
904 .. versionchanged:: 3.4
905 *input* was added.
Brian Curtine6242d72011-04-29 22:17:51 -0500906
Benjamin Petersondcf97b92008-07-02 17:30:14 +0000907.. _subprocess-replacements:
908
Ezio Melotti402f75d2012-11-08 10:07:10 +0200909Replacing Older Functions with the :mod:`subprocess` Module
910-----------------------------------------------------------
Georg Brandl116aa622007-08-15 14:28:22 +0000911
Nick Coghlanc29248f2011-11-08 20:49:23 +1000912In this section, "a becomes b" means that b can be used as a replacement for a.
Georg Brandl116aa622007-08-15 14:28:22 +0000913
914.. note::
915
Nick Coghlanc29248f2011-11-08 20:49:23 +1000916 All "a" functions in this section fail (more or less) silently if the
917 executed program cannot be found; the "b" replacements raise :exc:`OSError`
918 instead.
Georg Brandl116aa622007-08-15 14:28:22 +0000919
Nick Coghlanc29248f2011-11-08 20:49:23 +1000920 In addition, the replacements using :func:`check_output` will fail with a
921 :exc:`CalledProcessError` if the requested operation produces a non-zero
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +0300922 return code. The output is still available as the
923 :attr:`~CalledProcessError.output` attribute of the raised exception.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000924
925In the following examples, we assume that the relevant functions have already
Ezio Melotti402f75d2012-11-08 10:07:10 +0200926been imported from the :mod:`subprocess` module.
Georg Brandl116aa622007-08-15 14:28:22 +0000927
928
929Replacing /bin/sh shell backquote
930^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
931
932::
933
934 output=`mycmd myarg`
Nick Coghlanc29248f2011-11-08 20:49:23 +1000935 # becomes
936 output = check_output(["mycmd", "myarg"])
Georg Brandl116aa622007-08-15 14:28:22 +0000937
938
Benjamin Petersonf10a79a2008-10-11 00:49:57 +0000939Replacing shell pipeline
940^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000941
942::
943
944 output=`dmesg | grep hda`
Nick Coghlanc29248f2011-11-08 20:49:23 +1000945 # becomes
Georg Brandl116aa622007-08-15 14:28:22 +0000946 p1 = Popen(["dmesg"], stdout=PIPE)
947 p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
Gregory P. Smithe09d2f12011-02-05 21:47:25 +0000948 p1.stdout.close() # Allow p1 to receive a SIGPIPE if p2 exits.
Georg Brandl116aa622007-08-15 14:28:22 +0000949 output = p2.communicate()[0]
950
Gregory P. Smithe09d2f12011-02-05 21:47:25 +0000951The p1.stdout.close() call after starting the p2 is important in order for p1
952to receive a SIGPIPE if p2 exits before p1.
Georg Brandl116aa622007-08-15 14:28:22 +0000953
Nick Coghlanc29248f2011-11-08 20:49:23 +1000954Alternatively, for trusted input, the shell's own pipeline support may still
R David Murray28b8b942012-04-03 08:46:48 -0400955be used directly::
Nick Coghlanc29248f2011-11-08 20:49:23 +1000956
957 output=`dmesg | grep hda`
958 # becomes
959 output=check_output("dmesg | grep hda", shell=True)
960
961
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000962Replacing :func:`os.system`
963^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000964
965::
966
967 sts = os.system("mycmd" + " myarg")
Nick Coghlanc29248f2011-11-08 20:49:23 +1000968 # becomes
969 sts = call("mycmd" + " myarg", shell=True)
Georg Brandl116aa622007-08-15 14:28:22 +0000970
971Notes:
972
973* Calling the program through the shell is usually not required.
974
Georg Brandl116aa622007-08-15 14:28:22 +0000975A more realistic example would look like this::
976
977 try:
978 retcode = call("mycmd" + " myarg", shell=True)
979 if retcode < 0:
Collin Winterc79461b2007-09-01 23:34:30 +0000980 print("Child was terminated by signal", -retcode, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +0000981 else:
Collin Winterc79461b2007-09-01 23:34:30 +0000982 print("Child returned", retcode, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +0000983 except OSError as e:
Collin Winterc79461b2007-09-01 23:34:30 +0000984 print("Execution failed:", e, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +0000985
986
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000987Replacing the :func:`os.spawn <os.spawnl>` family
988^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000989
990P_NOWAIT example::
991
992 pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg")
993 ==>
994 pid = Popen(["/bin/mycmd", "myarg"]).pid
995
996P_WAIT example::
997
998 retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg")
999 ==>
1000 retcode = call(["/bin/mycmd", "myarg"])
1001
1002Vector example::
1003
1004 os.spawnvp(os.P_NOWAIT, path, args)
1005 ==>
1006 Popen([path] + args[1:])
1007
1008Environment example::
1009
1010 os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env)
1011 ==>
1012 Popen(["/bin/mycmd", "myarg"], env={"PATH": "/usr/bin"})
1013
1014
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001015
1016Replacing :func:`os.popen`, :func:`os.popen2`, :func:`os.popen3`
1017^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +00001018
1019::
1020
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001021 (child_stdin, child_stdout) = os.popen2(cmd, mode, bufsize)
Georg Brandl116aa622007-08-15 14:28:22 +00001022 ==>
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001023 p = Popen(cmd, shell=True, bufsize=bufsize,
1024 stdin=PIPE, stdout=PIPE, close_fds=True)
1025 (child_stdin, child_stdout) = (p.stdin, p.stdout)
Georg Brandl116aa622007-08-15 14:28:22 +00001026
1027::
1028
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001029 (child_stdin,
1030 child_stdout,
1031 child_stderr) = os.popen3(cmd, mode, bufsize)
Georg Brandl116aa622007-08-15 14:28:22 +00001032 ==>
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001033 p = Popen(cmd, shell=True, bufsize=bufsize,
1034 stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True)
1035 (child_stdin,
1036 child_stdout,
1037 child_stderr) = (p.stdin, p.stdout, p.stderr)
1038
1039::
1040
1041 (child_stdin, child_stdout_and_stderr) = os.popen4(cmd, mode, bufsize)
1042 ==>
1043 p = Popen(cmd, shell=True, bufsize=bufsize,
1044 stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True)
1045 (child_stdin, child_stdout_and_stderr) = (p.stdin, p.stdout)
1046
1047Return code handling translates as follows::
1048
1049 pipe = os.popen(cmd, 'w')
1050 ...
1051 rc = pipe.close()
Stefan Krahfc9e08d2010-07-14 10:16:11 +00001052 if rc is not None and rc >> 8:
Ezio Melotti985e24d2009-09-13 07:54:02 +00001053 print("There were some errors")
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001054 ==>
1055 process = Popen(cmd, 'w', stdin=PIPE)
1056 ...
1057 process.stdin.close()
1058 if process.wait() != 0:
Ezio Melotti985e24d2009-09-13 07:54:02 +00001059 print("There were some errors")
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001060
1061
1062Replacing functions from the :mod:`popen2` module
1063^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1064
1065.. note::
1066
1067 If the cmd argument to popen2 functions is a string, the command is executed
1068 through /bin/sh. If it is a list, the command is directly executed.
1069
1070::
1071
1072 (child_stdout, child_stdin) = popen2.popen2("somestring", bufsize, mode)
1073 ==>
R David Murrayae9d1932014-05-14 10:09:52 -04001074 p = Popen("somestring", shell=True, bufsize=bufsize,
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001075 stdin=PIPE, stdout=PIPE, close_fds=True)
1076 (child_stdout, child_stdin) = (p.stdout, p.stdin)
1077
1078::
1079
1080 (child_stdout, child_stdin) = popen2.popen2(["mycmd", "myarg"], bufsize, mode)
1081 ==>
1082 p = Popen(["mycmd", "myarg"], bufsize=bufsize,
1083 stdin=PIPE, stdout=PIPE, close_fds=True)
1084 (child_stdout, child_stdin) = (p.stdout, p.stdin)
1085
1086:class:`popen2.Popen3` and :class:`popen2.Popen4` basically work as
1087:class:`subprocess.Popen`, except that:
1088
1089* :class:`Popen` raises an exception if the execution fails.
1090
1091* the *capturestderr* argument is replaced with the *stderr* argument.
1092
1093* ``stdin=PIPE`` and ``stdout=PIPE`` must be specified.
1094
1095* popen2 closes all file descriptors by default, but you have to specify
Gregory P. Smithf5604852010-12-13 06:45:02 +00001096 ``close_fds=True`` with :class:`Popen` to guarantee this behavior on
1097 all platforms or past Python versions.
Eli Bendersky046a7642011-04-15 07:23:26 +03001098
Nick Coghlanc29248f2011-11-08 20:49:23 +10001099
Nick Coghlanc29248f2011-11-08 20:49:23 +10001100Legacy Shell Invocation Functions
Nick Coghlan32e4a582011-11-08 21:50:58 +10001101---------------------------------
Nick Coghlanc29248f2011-11-08 20:49:23 +10001102
1103This module also provides the following legacy functions from the 2.x
1104``commands`` module. These operations implicitly invoke the system shell and
1105none of the guarantees described above regarding security and exception
1106handling consistency are valid for these functions.
1107
1108.. function:: getstatusoutput(cmd)
1109
1110 Return ``(status, output)`` of executing *cmd* in a shell.
1111
Tim Golden60798142013-11-05 12:57:25 +00001112 Execute the string *cmd* in a shell with :meth:`Popen.check_output` and
1113 return a 2-tuple ``(status, output)``. Universal newlines mode is used;
1114 see the notes on :ref:`frequently-used-arguments` for more details.
Tim Golden3a2abb52013-11-03 18:24:50 +00001115
1116 A trailing newline is stripped from the output.
1117 The exit status for the command can be interpreted
Nick Coghlanc29248f2011-11-08 20:49:23 +10001118 according to the rules for the C function :c:func:`wait`. Example::
1119
1120 >>> subprocess.getstatusoutput('ls /bin/ls')
1121 (0, '/bin/ls')
1122 >>> subprocess.getstatusoutput('cat /bin/junk')
1123 (256, 'cat: /bin/junk: No such file or directory')
1124 >>> subprocess.getstatusoutput('/bin/junk')
1125 (256, 'sh: /bin/junk: not found')
1126
Gregory P. Smith8e0aa052014-05-11 13:28:35 -07001127 Availability: POSIX & Windows
R David Murray95b696a2014-03-07 20:04:17 -05001128
1129 .. versionchanged:: 3.3.4
1130 Windows support added
Nick Coghlanc29248f2011-11-08 20:49:23 +10001131
1132
1133.. function:: getoutput(cmd)
1134
1135 Return output (stdout and stderr) of executing *cmd* in a shell.
1136
1137 Like :func:`getstatusoutput`, except the exit status is ignored and the return
1138 value is a string containing the command's output. Example::
1139
1140 >>> subprocess.getoutput('ls /bin/ls')
1141 '/bin/ls'
1142
Gregory P. Smith8e0aa052014-05-11 13:28:35 -07001143 Availability: POSIX & Windows
R David Murray95b696a2014-03-07 20:04:17 -05001144
1145 .. versionchanged:: 3.3.4
1146 Windows support added
Nick Coghlanc29248f2011-11-08 20:49:23 +10001147
Nick Coghlan32e4a582011-11-08 21:50:58 +10001148
Eli Bendersky046a7642011-04-15 07:23:26 +03001149Notes
1150-----
1151
1152.. _converting-argument-sequence:
1153
1154Converting an argument sequence to a string on Windows
1155^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1156
1157On Windows, an *args* sequence is converted to a string that can be parsed
1158using the following rules (which correspond to the rules used by the MS C
1159runtime):
1160
11611. Arguments are delimited by white space, which is either a
1162 space or a tab.
1163
11642. A string surrounded by double quotation marks is
1165 interpreted as a single argument, regardless of white space
1166 contained within. A quoted string can be embedded in an
1167 argument.
1168
11693. A double quotation mark preceded by a backslash is
1170 interpreted as a literal double quotation mark.
1171
11724. Backslashes are interpreted literally, unless they
1173 immediately precede a double quotation mark.
1174
11755. If backslashes immediately precede a double quotation mark,
1176 every pair of backslashes is interpreted as a literal
1177 backslash. If the number of backslashes is odd, the last
1178 backslash escapes the next double quotation mark as
1179 described in rule 3.
1180
Eli Benderskyd2112312011-04-15 07:26:28 +03001181
Éric Araujo9bce3112011-07-27 18:29:31 +02001182.. seealso::
1183
1184 :mod:`shlex`
1185 Module which provides function to parse and escape command lines.