blob: f03c3229423f7bd70aa46956a4b6afea86f2e63e [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
12replace several other, older modules and functions, such as::
13
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
Nick Coghlanc29248f2011-11-08 20:49:23 +100028The recommended approach to invoking subprocesses is to use the following
29convenience functions for all use cases they can handle. For more advanced
30use cases, the underlying :class:`Popen` interface can be used directly.
31
32
Nick Coghlan217f05b2011-11-08 22:11:21 +100033.. function:: call(args, *, stdin=None, stdout=None, stderr=None, shell=False, timeout=None)
Nick Coghlanc29248f2011-11-08 20:49:23 +100034
35 Run the command described by *args*. Wait for command to complete, then
36 return the :attr:`returncode` attribute.
37
38 The arguments shown above are merely the most common ones, described below
Nick Coghlan217f05b2011-11-08 22:11:21 +100039 in :ref:`frequently-used-arguments` (hence the use of keyword-only notation
40 in the abbreviated signature). The full function signature is largely the
41 same as that of the :class:`Popen` constructor - this function passes all
42 supplied arguments other than *timeout* directly through to that interface.
43
44 The *timeout* argument is passed to :meth:`Popen.wait`. If the timeout
45 expires, the child process will be killed and then waited for again. The
46 :exc:`TimeoutExpired` exception will be re-raised after the child process
47 has terminated.
Nick Coghlanc29248f2011-11-08 20:49:23 +100048
49 Examples::
50
51 >>> subprocess.call(["ls", "-l"])
52 0
53
54 >>> subprocess.call("exit 1", shell=True)
55 1
56
57 .. warning::
58
59 Invoking the system shell with ``shell=True`` can be a security hazard
60 if combined with untrusted input. See the warning under
61 :ref:`frequently-used-arguments` for details.
62
63 .. note::
64
65 Do not use ``stdout=PIPE`` or ``stderr=PIPE`` with this function. As
66 the pipes are not being read in the current process, the child
67 process may block if it generates enough output to a pipe to fill up
68 the OS pipe buffer.
69
Nick Coghlan217f05b2011-11-08 22:11:21 +100070 .. versionchanged:: 3.3
71 *timeout* was added.
Nick Coghlanc29248f2011-11-08 20:49:23 +100072
Nick Coghlan217f05b2011-11-08 22:11:21 +100073
74.. function:: check_call(args, *, stdin=None, stdout=None, stderr=None, shell=False, timeout=None)
Nick Coghlanc29248f2011-11-08 20:49:23 +100075
76 Run command with arguments. Wait for command to complete. If the return
77 code was zero then return, otherwise raise :exc:`CalledProcessError`. The
78 :exc:`CalledProcessError` object will have the return code in the
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +030079 :attr:`~CalledProcessError.returncode` attribute.
Nick Coghlanc29248f2011-11-08 20:49:23 +100080
81 The arguments shown above are merely the most common ones, described below
Nick Coghlan217f05b2011-11-08 22:11:21 +100082 in :ref:`frequently-used-arguments` (hence the use of keyword-only notation
83 in the abbreviated signature). The full function signature is largely the
84 same as that of the :class:`Popen` constructor - this function passes all
85 supplied arguments other than *timeout* directly through to that interface.
86
87 The *timeout* argument is passed to :meth:`Popen.wait`. If the timeout
88 expires, the child process will be killed and then waited for again. The
89 :exc:`TimeoutExpired` exception will be re-raised after the child process
90 has terminated.
Nick Coghlanc29248f2011-11-08 20:49:23 +100091
92 Examples::
93
94 >>> subprocess.check_call(["ls", "-l"])
95 0
96
97 >>> subprocess.check_call("exit 1", shell=True)
98 Traceback (most recent call last):
99 ...
100 subprocess.CalledProcessError: Command 'exit 1' returned non-zero exit status 1
101
Nick Coghlanc29248f2011-11-08 20:49:23 +1000102 .. warning::
103
104 Invoking the system shell with ``shell=True`` can be a security hazard
105 if combined with untrusted input. See the warning under
106 :ref:`frequently-used-arguments` for details.
107
108 .. note::
109
110 Do not use ``stdout=PIPE`` or ``stderr=PIPE`` with this function. As
111 the pipes are not being read in the current process, the child
112 process may block if it generates enough output to a pipe to fill up
113 the OS pipe buffer.
114
Nick Coghlan217f05b2011-11-08 22:11:21 +1000115 .. versionchanged:: 3.3
116 *timeout* was added.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000117
Nick Coghlan217f05b2011-11-08 22:11:21 +1000118
Serhiy Storchakafcd9f222013-04-22 20:20:54 +0300119.. function:: check_output(args, *, input=None, stdin=None, stderr=None, shell=False, universal_newlines=False, timeout=None)
Nick Coghlanc29248f2011-11-08 20:49:23 +1000120
Gregory P. Smithf16455a2013-03-19 23:36:31 -0700121 Run command with arguments and return its output.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000122
123 If the return code was non-zero it raises a :exc:`CalledProcessError`. The
124 :exc:`CalledProcessError` object will have the return code in the
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +0300125 :attr:`~CalledProcessError.returncode` attribute and any output in the
126 :attr:`~CalledProcessError.output` attribute.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000127
128 The arguments shown above are merely the most common ones, described below
Nick Coghlan217f05b2011-11-08 22:11:21 +1000129 in :ref:`frequently-used-arguments` (hence the use of keyword-only notation
130 in the abbreviated signature). The full function signature is largely the
131 same as that of the :class:`Popen` constructor - this functions passes all
Serhiy Storchakafcd9f222013-04-22 20:20:54 +0300132 supplied arguments other than *input* and *timeout* directly through to
133 that interface. In addition, *stdout* is not permitted as an argument, as
134 it is used internally to collect the output from the subprocess.
Nick Coghlan217f05b2011-11-08 22:11:21 +1000135
136 The *timeout* argument is passed to :meth:`Popen.wait`. If the timeout
137 expires, the child process will be killed and then waited for again. The
138 :exc:`TimeoutExpired` exception will be re-raised after the child process
139 has terminated.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000140
Serhiy Storchakafcd9f222013-04-22 20:20:54 +0300141 The *input* argument is passed to :meth:`Popen.communicate` and thus to the
142 subprocess's stdin. If used it must be a byte sequence, or a string if
143 ``universal_newlines=True``. When used, the internal :class:`Popen` object
144 is automatically created with ``stdin=PIPE``, and the *stdin* argument may
145 not be used as well.
146
Nick Coghlanc29248f2011-11-08 20:49:23 +1000147 Examples::
148
149 >>> subprocess.check_output(["echo", "Hello World!"])
150 b'Hello World!\n'
151
152 >>> subprocess.check_output(["echo", "Hello World!"], universal_newlines=True)
153 'Hello World!\n'
154
Serhiy Storchakafcd9f222013-04-22 20:20:54 +0300155 >>> subprocess.check_output(["sed", "-e", "s/foo/bar/"],
156 ... input=b"when in the course of fooman events\n")
157 b'when in the course of barman events\n'
158
Nick Coghlanc29248f2011-11-08 20:49:23 +1000159 >>> subprocess.check_output("exit 1", shell=True)
160 Traceback (most recent call last):
161 ...
162 subprocess.CalledProcessError: Command 'exit 1' returned non-zero exit status 1
163
164 By default, this function will return the data as encoded bytes. The actual
165 encoding of the output data may depend on the command being invoked, so the
166 decoding to text will often need to be handled at the application level.
167
168 This behaviour may be overridden by setting *universal_newlines* to
Andrew Svetlov50be4522012-08-13 22:09:04 +0300169 ``True`` as described below in :ref:`frequently-used-arguments`.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000170
171 To also capture standard error in the result, use
172 ``stderr=subprocess.STDOUT``::
173
174 >>> subprocess.check_output(
175 ... "ls non_existent_file; exit 0",
176 ... stderr=subprocess.STDOUT,
177 ... shell=True)
178 'ls: non_existent_file: No such file or directory\n'
179
Nick Coghlanc29248f2011-11-08 20:49:23 +1000180 .. warning::
181
182 Invoking the system shell with ``shell=True`` can be a security hazard
183 if combined with untrusted input. See the warning under
184 :ref:`frequently-used-arguments` for details.
185
186 .. note::
187
188 Do not use ``stderr=PIPE`` with this function. As the pipe is not being
189 read in the current process, the child process may block if it
190 generates enough output to the pipe to fill up the OS pipe buffer.
191
Serhiy Storchakafcd9f222013-04-22 20:20:54 +0300192 .. versionadded:: 3.1
193
Nick Coghlan217f05b2011-11-08 22:11:21 +1000194 .. versionchanged:: 3.3
195 *timeout* was added.
196
Serhiy Storchakafcd9f222013-04-22 20:20:54 +0300197 .. versionchanged:: 3.4
198 *input* was added.
Nick Coghlan217f05b2011-11-08 22:11:21 +1000199
200.. data:: DEVNULL
201
202 Special value that can be used as the *stdin*, *stdout* or *stderr* argument
203 to :class:`Popen` and indicates that the special file :data:`os.devnull`
204 will be used.
205
206 .. versionadded:: 3.3
207
Nick Coghlanc29248f2011-11-08 20:49:23 +1000208
209.. data:: PIPE
210
211 Special value that can be used as the *stdin*, *stdout* or *stderr* argument
212 to :class:`Popen` and indicates that a pipe to the standard stream should be
213 opened.
214
215
216.. data:: STDOUT
217
218 Special value that can be used as the *stderr* argument to :class:`Popen` and
219 indicates that standard error should go into the same handle as standard
220 output.
221
222
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300223.. exception:: SubprocessError
224
225 Base class for all other exceptions from this module.
226
227 .. versionadded:: 3.3
228
229
230.. exception:: TimeoutExpired
231
232 Subclass of :exc:`SubprocessError`, raised when a timeout expires
233 while waiting for a child process.
234
235 .. attribute:: cmd
236
237 Command that was used to spawn the child process.
238
239 .. attribute:: timeout
240
241 Timeout in seconds.
242
243 .. attribute:: output
244
245 Output of the child process if this exception is raised by
246 :func:`check_output`. Otherwise, ``None``.
247
248 .. versionadded:: 3.3
249
250
251.. exception:: CalledProcessError
252
253 Subclass of :exc:`SubprocessError`, raised when a process run by
254 :func:`check_call` or :func:`check_output` returns a non-zero exit status.
255
256 .. attribute:: returncode
257
258 Exit status of the child process.
259
260 .. attribute:: cmd
261
262 Command that was used to spawn the child process.
263
264 .. attribute:: output
265
266 Output of the child process if this exception is raised by
267 :func:`check_output`. Otherwise, ``None``.
268
269
270
Nick Coghlanc29248f2011-11-08 20:49:23 +1000271.. _frequently-used-arguments:
272
273Frequently Used Arguments
274^^^^^^^^^^^^^^^^^^^^^^^^^
275
276To support a wide variety of use cases, the :class:`Popen` constructor (and
277the convenience functions) accept a large number of optional arguments. For
278most typical use cases, many of these arguments can be safely left at their
279default values. The arguments that are most commonly needed are:
280
281 *args* is required for all calls and should be a string, or a sequence of
282 program arguments. Providing a sequence of arguments is generally
283 preferred, as it allows the module to take care of any required escaping
284 and quoting of arguments (e.g. to permit spaces in file names). If passing
285 a single string, either *shell* must be :const:`True` (see below) or else
286 the string must simply name the program to be executed without specifying
287 any arguments.
288
289 *stdin*, *stdout* and *stderr* specify the executed program's standard input,
290 standard output and standard error file handles, respectively. Valid values
Nick Coghlan217f05b2011-11-08 22:11:21 +1000291 are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive
292 integer), an existing file object, and ``None``. :data:`PIPE` indicates
293 that a new pipe to the child should be created. :data:`DEVNULL` indicates
294 that the special file :data:`os.devnull` will be used. With the default
295 settings of ``None``, no redirection will occur; the child's file handles
296 will be inherited from the parent. Additionally, *stderr* can be
297 :data:`STDOUT`, which indicates that the stderr data from the child
298 process should be captured into the same file handle as for *stdout*.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000299
R David Murray1b00f252012-08-15 10:43:58 -0400300 .. index::
301 single: universal newlines; subprocess module
302
Ronald Oussoren385521c2013-07-07 09:26:45 +0200303 If *universal_newlines* is ``False`` the file objects *stdin*, *stdout* and
304 *stderr* will be opened as binary streams, and no line ending conversion is
305 done.
306
307 If *universal_newlines* is ``True``, these file objects
308 will be opened as text streams in :term:`universal newlines` mode
R David Murray0689ce42012-08-15 11:13:31 -0400309 using the encoding returned by :func:`locale.getpreferredencoding(False)
Ronald Oussoren385521c2013-07-07 09:26:45 +0200310 <locale.getpreferredencoding>`. For *stdin*, line ending characters
R David Murray0689ce42012-08-15 11:13:31 -0400311 ``'\n'`` in the input will be converted to the default line separator
312 :data:`os.linesep`. For *stdout* and *stderr*, all line endings in the
313 output will be converted to ``'\n'``. For more information see the
314 documentation of the :class:`io.TextIOWrapper` class when the *newline*
315 argument to its constructor is ``None``.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000316
Andrew Svetlov50be4522012-08-13 22:09:04 +0300317 .. note::
318
Gregory P. Smith1f8a40b2013-03-20 18:32:03 -0700319 The newlines attribute of the file objects :attr:`Popen.stdin`,
320 :attr:`Popen.stdout` and :attr:`Popen.stderr` are not updated by
321 the :meth:`Popen.communicate` method.
Andrew Svetlov50be4522012-08-13 22:09:04 +0300322
323 If *shell* is ``True``, the specified command will be executed through
Ezio Melotti186d5232012-09-15 08:34:08 +0300324 the shell. This can be useful if you are using Python primarily for the
Nick Coghlanc29248f2011-11-08 20:49:23 +1000325 enhanced control flow it offers over most system shells and still want
Ezio Melotti186d5232012-09-15 08:34:08 +0300326 convenient access to other shell features such as shell pipes, filename
327 wildcards, environment variable expansion, and expansion of ``~`` to a
328 user's home directory. However, note that Python itself offers
329 implementations of many shell-like features (in particular, :mod:`glob`,
330 :mod:`fnmatch`, :func:`os.walk`, :func:`os.path.expandvars`,
331 :func:`os.path.expanduser`, and :mod:`shutil`).
Nick Coghlanc29248f2011-11-08 20:49:23 +1000332
Andrew Svetlov4805fa82012-08-13 22:11:14 +0300333 .. versionchanged:: 3.3
334 When *universal_newlines* is ``True``, the class uses the encoding
335 :func:`locale.getpreferredencoding(False) <locale.getpreferredencoding>`
336 instead of ``locale.getpreferredencoding()``. See the
337 :class:`io.TextIOWrapper` class for more information on this change.
338
Nick Coghlanc29248f2011-11-08 20:49:23 +1000339 .. warning::
340
341 Executing shell commands that incorporate unsanitized input from an
342 untrusted source makes a program vulnerable to `shell injection
343 <http://en.wikipedia.org/wiki/Shell_injection#Shell_injection>`_,
344 a serious security flaw which can result in arbitrary command execution.
Chris Jerdonekcc32a682012-10-10 22:52:22 -0700345 For this reason, the use of ``shell=True`` is **strongly discouraged**
346 in cases where the command string is constructed from external input::
Nick Coghlanc29248f2011-11-08 20:49:23 +1000347
348 >>> from subprocess import call
349 >>> filename = input("What file would you like to display?\n")
350 What file would you like to display?
351 non_existent; rm -rf / #
352 >>> call("cat " + filename, shell=True) # Uh-oh. This will end badly...
353
354 ``shell=False`` disables all shell based features, but does not suffer
355 from this vulnerability; see the Note in the :class:`Popen` constructor
356 documentation for helpful hints in getting ``shell=False`` to work.
357
Andrew Svetlovc2415eb2012-10-28 11:42:26 +0200358 When using ``shell=True``, :func:`shlex.quote` can be used to properly
359 escape whitespace and shell metacharacters in strings that are going to
360 be used to construct shell commands.
361
Nick Coghlanc29248f2011-11-08 20:49:23 +1000362These options, along with all of the other options, are described in more
363detail in the :class:`Popen` constructor documentation.
364
365
Sandro Tosi1526ad12011-12-25 11:27:37 +0100366Popen Constructor
Sandro Tosi3e6c8142011-12-25 17:14:11 +0100367^^^^^^^^^^^^^^^^^
Nick Coghlanc29248f2011-11-08 20:49:23 +1000368
369The underlying process creation and management in this module is handled by
370the :class:`Popen` class. It offers a lot of flexibility so that developers
371are able to handle the less common cases not covered by the convenience
372functions.
Georg Brandl116aa622007-08-15 14:28:22 +0000373
374
Gregory P. Smitha1ed5392013-03-23 11:44:25 -0700375.. class:: Popen(args, bufsize=-1, executable=None, stdin=None, stdout=None, \
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700376 stderr=None, preexec_fn=None, close_fds=True, shell=False, \
377 cwd=None, env=None, universal_newlines=False, \
378 startupinfo=None, creationflags=0, restore_signals=True, \
379 start_new_session=False, pass_fds=())
Georg Brandl116aa622007-08-15 14:28:22 +0000380
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700381 Execute a child program in a new process. On Unix, the class uses
382 :meth:`os.execvp`-like behavior to execute the child program. On Windows,
383 the class uses the Windows ``CreateProcess()`` function. The arguments to
384 :class:`Popen` are as follows.
Georg Brandl116aa622007-08-15 14:28:22 +0000385
Chris Jerdonek470ee392012-10-08 23:06:57 -0700386 *args* should be a sequence of program arguments or else a single string.
387 By default, the program to execute is the first item in *args* if *args* is
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700388 a sequence. If *args* is a string, the interpretation is
389 platform-dependent and described below. See the *shell* and *executable*
390 arguments for additional differences from the default behavior. Unless
391 otherwise stated, it is recommended to pass *args* as a sequence.
Georg Brandl116aa622007-08-15 14:28:22 +0000392
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700393 On Unix, if *args* is a string, the string is interpreted as the name or
394 path of the program to execute. However, this can only be done if not
395 passing arguments to the program.
Georg Brandl116aa622007-08-15 14:28:22 +0000396
R. David Murray5973e4d2010-02-04 16:41:57 +0000397 .. note::
398
399 :meth:`shlex.split` can be useful when determining the correct
400 tokenization for *args*, especially in complex cases::
401
402 >>> import shlex, subprocess
R. David Murray73bc75b2010-02-05 16:25:12 +0000403 >>> command_line = input()
R. David Murray5973e4d2010-02-04 16:41:57 +0000404 /bin/vikings -input eggs.txt -output "spam spam.txt" -cmd "echo '$MONEY'"
405 >>> args = shlex.split(command_line)
406 >>> print(args)
407 ['/bin/vikings', '-input', 'eggs.txt', '-output', 'spam spam.txt', '-cmd', "echo '$MONEY'"]
408 >>> p = subprocess.Popen(args) # Success!
409
410 Note in particular that options (such as *-input*) and arguments (such
411 as *eggs.txt*) that are separated by whitespace in the shell go in separate
412 list elements, while arguments that need quoting or backslash escaping when
413 used in the shell (such as filenames containing spaces or the *echo* command
414 shown above) are single list elements.
415
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700416 On Windows, if *args* is a sequence, it will be converted to a string in a
417 manner described in :ref:`converting-argument-sequence`. This is because
418 the underlying ``CreateProcess()`` operates on strings.
Chris Jerdonek470ee392012-10-08 23:06:57 -0700419
420 The *shell* argument (which defaults to *False*) specifies whether to use
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700421 the shell as the program to execute. If *shell* is *True*, it is
422 recommended to pass *args* as a string rather than as a sequence.
Chris Jerdonek470ee392012-10-08 23:06:57 -0700423
424 On Unix with ``shell=True``, the shell defaults to :file:`/bin/sh`. If
425 *args* is a string, the string specifies the command
426 to execute through the shell. This means that the string must be
R. David Murray5973e4d2010-02-04 16:41:57 +0000427 formatted exactly as it would be when typed at the shell prompt. This
428 includes, for example, quoting or backslash escaping filenames with spaces in
429 them. If *args* is a sequence, the first item specifies the command string, and
430 any additional items will be treated as additional arguments to the shell
Chris Jerdonek470ee392012-10-08 23:06:57 -0700431 itself. That is to say, :class:`Popen` does the equivalent of::
R. David Murray5973e4d2010-02-04 16:41:57 +0000432
433 Popen(['/bin/sh', '-c', args[0], args[1], ...])
Georg Brandl116aa622007-08-15 14:28:22 +0000434
Chris Jerdonek470ee392012-10-08 23:06:57 -0700435 On Windows with ``shell=True``, the :envvar:`COMSPEC` environment variable
436 specifies the default shell. The only time you need to specify
437 ``shell=True`` on Windows is when the command you wish to execute is built
438 into the shell (e.g. :command:`dir` or :command:`copy`). You do not need
439 ``shell=True`` to run a batch file or console-based executable.
Georg Brandl116aa622007-08-15 14:28:22 +0000440
Chris Jerdonekcc32a682012-10-10 22:52:22 -0700441 .. warning::
442
443 Passing ``shell=True`` can be a security hazard if combined with
444 untrusted input. See the warning under :ref:`frequently-used-arguments`
445 for details.
446
Benjamin Petersoneacec1c2014-01-18 00:47:00 -0500447 *bufsize* will be supplied as the corresponding argument to the :func:`open`
448 function when creating the stdin/stdout/stderr pipe file objects: :const:`0`
449 means unbuffered (read and write are one system call and can return short),
450 :const:`1` means line buffered, any other positive value means use a buffer
451 of approximately that size. A negative bufsize (the default) means the
452 system default of io.DEFAULT_BUFFER_SIZE will be used.
Georg Brandl116aa622007-08-15 14:28:22 +0000453
Georg Brandl37b70bb2013-11-25 08:48:37 +0100454 .. versionchanged:: 3.3.1
Gregory P. Smitha1ed5392013-03-23 11:44:25 -0700455 *bufsize* now defaults to -1 to enable buffering by default to match the
Georg Brandl37b70bb2013-11-25 08:48:37 +0100456 behavior that most code expects. In versions prior to Python 3.2.4 and
457 3.3.1 it incorrectly defaulted to :const:`0` which was unbuffered
458 and allowed short reads. This was unintentional and did not match the
459 behavior of Python 2 as most code expected.
Antoine Pitrou4b876202010-06-02 17:10:49 +0000460
Chris Jerdonek470ee392012-10-08 23:06:57 -0700461 The *executable* argument specifies a replacement program to execute. It
462 is very seldom needed. When ``shell=False``, *executable* replaces the
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700463 program to execute specified by *args*. However, the original *args* is
464 still passed to the program. Most programs treat the program specified
465 by *args* as the command name, which can then be different from the program
466 actually executed. On Unix, the *args* name
Chris Jerdonek470ee392012-10-08 23:06:57 -0700467 becomes the display name for the executable in utilities such as
468 :program:`ps`. If ``shell=True``, on Unix the *executable* argument
469 specifies a replacement shell for the default :file:`/bin/sh`.
Georg Brandl116aa622007-08-15 14:28:22 +0000470
Nick Coghlanc29248f2011-11-08 20:49:23 +1000471 *stdin*, *stdout* and *stderr* specify the executed program's standard input,
Georg Brandlaf265f42008-12-07 15:06:20 +0000472 standard output and standard error file handles, respectively. Valid values
Ross Lagerwallba102ec2011-03-16 18:40:25 +0200473 are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive
474 integer), an existing :term:`file object`, and ``None``. :data:`PIPE`
475 indicates that a new pipe to the child should be created. :data:`DEVNULL`
Nick Coghlan217f05b2011-11-08 22:11:21 +1000476 indicates that the special file :data:`os.devnull` will be used. With the
477 default settings of ``None``, no redirection will occur; the child's file
478 handles will be inherited from the parent. Additionally, *stderr* can be
479 :data:`STDOUT`, which indicates that the stderr data from the applications
480 should be captured into the same file handle as for stdout.
Georg Brandl116aa622007-08-15 14:28:22 +0000481
482 If *preexec_fn* is set to a callable object, this object will be called in the
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000483 child process just before the child is executed.
484 (Unix only)
485
486 .. warning::
487
488 The *preexec_fn* parameter is not safe to use in the presence of threads
489 in your application. The child process could deadlock before exec is
490 called.
491 If you must use it, keep it trivial! Minimize the number of libraries
492 you call into.
493
494 .. note::
495
496 If you need to modify the environment for the child use the *env*
497 parameter rather than doing it in a *preexec_fn*.
498 The *start_new_session* parameter can take the place of a previously
499 common use of *preexec_fn* to call os.setsid() in the child.
Georg Brandl116aa622007-08-15 14:28:22 +0000500
501 If *close_fds* is true, all file descriptors except :const:`0`, :const:`1` and
502 :const:`2` will be closed before the child process is executed. (Unix only).
Gregory P. Smith8edd99d2010-12-14 13:43:30 +0000503 The default varies by platform: Always true on Unix. On Windows it is
504 true when *stdin*/*stdout*/*stderr* are :const:`None`, false otherwise.
Gregory P. Smithd23047b2010-12-04 09:10:44 +0000505 On Windows, if *close_fds* is true then no handles will be inherited by the
Georg Brandl116aa622007-08-15 14:28:22 +0000506 child process. Note that on Windows, you cannot set *close_fds* to true and
507 also redirect the standard handles by setting *stdin*, *stdout* or *stderr*.
508
Gregory P. Smith8edd99d2010-12-14 13:43:30 +0000509 .. versionchanged:: 3.2
510 The default for *close_fds* was changed from :const:`False` to
511 what is described above.
512
513 *pass_fds* is an optional sequence of file descriptors to keep open
514 between the parent and child. Providing any *pass_fds* forces
515 *close_fds* to be :const:`True`. (Unix only)
516
517 .. versionadded:: 3.2
518 The *pass_fds* parameter was added.
Georg Brandl116aa622007-08-15 14:28:22 +0000519
Chris Jerdonekec3ea942012-09-30 00:10:28 -0700520 If *cwd* is not ``None``, the function changes the working directory to
521 *cwd* before executing the child. In particular, the function looks for
522 *executable* (or for the first item in *args*) relative to *cwd* if the
523 executable path is a relative path.
Georg Brandl116aa622007-08-15 14:28:22 +0000524
Serhiy Storchakafbc1c262013-11-29 12:17:13 +0200525 If *restore_signals* is true (the default) all signals that Python has set to
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000526 SIG_IGN are restored to SIG_DFL in the child process before the exec.
527 Currently this includes the SIGPIPE, SIGXFZ and SIGXFSZ signals.
528 (Unix only)
529
530 .. versionchanged:: 3.2
531 *restore_signals* was added.
532
Serhiy Storchakafbc1c262013-11-29 12:17:13 +0200533 If *start_new_session* is true the setsid() system call will be made in the
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000534 child process prior to the execution of the subprocess. (Unix only)
535
536 .. versionchanged:: 3.2
537 *start_new_session* was added.
538
Christian Heimesa342c012008-04-20 21:01:16 +0000539 If *env* is not ``None``, it must be a mapping that defines the environment
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000540 variables for the new process; these are used instead of the default
541 behavior of inheriting the current process' environment.
Georg Brandl116aa622007-08-15 14:28:22 +0000542
R. David Murray1055e892009-04-16 18:15:32 +0000543 .. note::
R. David Murrayf4ac1492009-04-15 22:35:15 +0000544
Georg Brandl2708f3a2009-12-20 14:38:23 +0000545 If specified, *env* must provide any variables required for the program to
546 execute. On Windows, in order to run a `side-by-side assembly`_ the
547 specified *env* **must** include a valid :envvar:`SystemRoot`.
R. David Murrayf4ac1492009-04-15 22:35:15 +0000548
R. David Murray1055e892009-04-16 18:15:32 +0000549 .. _side-by-side assembly: http://en.wikipedia.org/wiki/Side-by-Side_Assembly
550
Andrew Svetlov50be4522012-08-13 22:09:04 +0300551 If *universal_newlines* is ``True``, the file objects *stdin*, *stdout*
R David Murray1b00f252012-08-15 10:43:58 -0400552 and *stderr* are opened as text streams in universal newlines mode, as
Ronald Oussorena6865052013-07-06 10:23:59 +0200553 described above in :ref:`frequently-used-arguments`, otherwise they are
554 opened as binary streams.
Georg Brandl116aa622007-08-15 14:28:22 +0000555
Brian Curtine6242d72011-04-29 22:17:51 -0500556 If given, *startupinfo* will be a :class:`STARTUPINFO` object, which is
557 passed to the underlying ``CreateProcess`` function.
Brian Curtin30401932011-04-29 22:20:57 -0500558 *creationflags*, if given, can be :data:`CREATE_NEW_CONSOLE` or
559 :data:`CREATE_NEW_PROCESS_GROUP`. (Windows only)
Georg Brandl116aa622007-08-15 14:28:22 +0000560
Gregory P. Smith6b657452011-05-11 21:42:08 -0700561 Popen objects are supported as context managers via the :keyword:`with` statement:
562 on exit, standard file descriptors are closed, and the process is waited for.
Brian Curtin79cdb662010-12-03 02:46:02 +0000563 ::
564
565 with Popen(["ifconfig"], stdout=PIPE) as proc:
566 log.write(proc.stdout.read())
567
568 .. versionchanged:: 3.2
569 Added context manager support.
570
Georg Brandl116aa622007-08-15 14:28:22 +0000571
Georg Brandl116aa622007-08-15 14:28:22 +0000572Exceptions
573^^^^^^^^^^
574
575Exceptions raised in the child process, before the new program has started to
576execute, will be re-raised in the parent. Additionally, the exception object
577will have one extra attribute called :attr:`child_traceback`, which is a string
Georg Brandl81675612010-08-26 14:30:56 +0000578containing traceback information from the child's point of view.
Georg Brandl116aa622007-08-15 14:28:22 +0000579
580The most common exception raised is :exc:`OSError`. This occurs, for example,
581when trying to execute a non-existent file. Applications should prepare for
582:exc:`OSError` exceptions.
583
584A :exc:`ValueError` will be raised if :class:`Popen` is called with invalid
585arguments.
586
Nick Coghlanc29248f2011-11-08 20:49:23 +1000587:func:`check_call` and :func:`check_output` will raise
588:exc:`CalledProcessError` if the called process returns a non-zero return
589code.
Georg Brandl116aa622007-08-15 14:28:22 +0000590
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400591All of the functions and methods that accept a *timeout* parameter, such as
592:func:`call` and :meth:`Popen.communicate` will raise :exc:`TimeoutExpired` if
593the timeout expires before the process exits.
594
Ronald Oussorenc1577902011-03-16 10:03:10 -0400595Exceptions defined in this module all inherit from :exc:`SubprocessError`.
Gregory P. Smith54d412e2011-03-14 14:08:43 -0400596
597 .. versionadded:: 3.3
598 The :exc:`SubprocessError` base class was added.
599
Georg Brandl116aa622007-08-15 14:28:22 +0000600
601Security
602^^^^^^^^
603
Nick Coghlanc29248f2011-11-08 20:49:23 +1000604Unlike some other popen functions, this implementation will never call a
605system shell implicitly. This means that all characters, including shell
606metacharacters, can safely be passed to child processes. Obviously, if the
607shell is invoked explicitly, then it is the application's responsibility to
608ensure that all whitespace and metacharacters are quoted appropriately.
Georg Brandl116aa622007-08-15 14:28:22 +0000609
610
611Popen Objects
612-------------
613
614Instances of the :class:`Popen` class have the following methods:
615
616
617.. method:: Popen.poll()
618
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +0300619 Check if child process has terminated. Set and return
620 :attr:`~Popen.returncode` attribute.
Georg Brandl116aa622007-08-15 14:28:22 +0000621
622
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400623.. method:: Popen.wait(timeout=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000624
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +0300625 Wait for child process to terminate. Set and return
626 :attr:`~Popen.returncode` attribute.
Georg Brandl116aa622007-08-15 14:28:22 +0000627
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400628 If the process does not terminate after *timeout* seconds, raise a
629 :exc:`TimeoutExpired` exception. It is safe to catch this exception and
630 retry the wait.
631
Victor Stinner07171242014-02-24 13:18:47 +0100632 .. note::
633
634 The function is implemented using a busy loop (non-blocking call and
635 short sleeps). Use the :mod:`asyncio` module for an asynchronous wait:
636 see :class:`asyncio.create_subprocess_exec`.
637
Georg Brandl734e2682008-08-12 08:18:18 +0000638 .. warning::
639
Philip Jenveyb0896842009-12-03 02:29:36 +0000640 This will deadlock when using ``stdout=PIPE`` and/or
641 ``stderr=PIPE`` and the child process generates enough output to
642 a pipe such that it blocks waiting for the OS pipe buffer to
643 accept more data. Use :meth:`communicate` to avoid that.
Georg Brandl734e2682008-08-12 08:18:18 +0000644
Reid Kleckner28f13032011-03-14 12:36:53 -0400645 .. versionchanged:: 3.3
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400646 *timeout* was added.
Georg Brandl116aa622007-08-15 14:28:22 +0000647
Gregory P. Smithbbe33352014-02-11 09:21:03 -0800648 .. deprecated:: 3.4
649
650 Do not use the undocumented *endtime* parameter. It is was
651 unintentionally exposed in 3.3 but was intended to be private
652 for internal use. Use *timeout* instead.
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400653
654.. method:: Popen.communicate(input=None, timeout=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000655
656 Interact with process: Send data to stdin. Read data from stdout and stderr,
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400657 until end-of-file is reached. Wait for process to terminate. The optional
Gregory P. Smitha454ef62011-05-22 22:29:49 -0700658 *input* argument should be data to be sent to the child process, or
659 ``None``, if no data should be sent to the child. The type of *input*
660 must be bytes or, if *universal_newlines* was ``True``, a string.
Georg Brandl116aa622007-08-15 14:28:22 +0000661
Georg Brandlaf265f42008-12-07 15:06:20 +0000662 :meth:`communicate` returns a tuple ``(stdoutdata, stderrdata)``.
Georg Brandl116aa622007-08-15 14:28:22 +0000663
Guido van Rossum0d3fb8a2007-11-26 23:23:18 +0000664 Note that if you want to send data to the process's stdin, you need to create
665 the Popen object with ``stdin=PIPE``. Similarly, to get anything other than
666 ``None`` in the result tuple, you need to give ``stdout=PIPE`` and/or
667 ``stderr=PIPE`` too.
668
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400669 If the process does not terminate after *timeout* seconds, a
670 :exc:`TimeoutExpired` exception will be raised. Catching this exception and
671 retrying communication will not lose any output.
672
673 The child process is not killed if the timeout expires, so in order to
674 cleanup properly a well-behaved application should kill the child process and
675 finish communication::
676
677 proc = subprocess.Popen(...)
678 try:
679 outs, errs = proc.communicate(timeout=15)
680 except TimeoutExpired:
681 proc.kill()
682 outs, errs = proc.communicate()
683
Christian Heimes7f044312008-01-06 17:05:40 +0000684 .. note::
Georg Brandl116aa622007-08-15 14:28:22 +0000685
Christian Heimes7f044312008-01-06 17:05:40 +0000686 The data read is buffered in memory, so do not use this method if the data
687 size is large or unlimited.
688
Reid Kleckner28f13032011-03-14 12:36:53 -0400689 .. versionchanged:: 3.3
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400690 *timeout* was added.
691
Georg Brandl116aa622007-08-15 14:28:22 +0000692
Christian Heimesa342c012008-04-20 21:01:16 +0000693.. method:: Popen.send_signal(signal)
694
695 Sends the signal *signal* to the child.
696
697 .. note::
698
Brian Curtineb24d742010-04-12 17:16:38 +0000699 On Windows, SIGTERM is an alias for :meth:`terminate`. CTRL_C_EVENT and
Senthil Kumaran916bd382010-10-15 12:55:19 +0000700 CTRL_BREAK_EVENT can be sent to processes started with a *creationflags*
Brian Curtineb24d742010-04-12 17:16:38 +0000701 parameter which includes `CREATE_NEW_PROCESS_GROUP`.
Christian Heimesa342c012008-04-20 21:01:16 +0000702
Christian Heimesa342c012008-04-20 21:01:16 +0000703
704.. method:: Popen.terminate()
705
706 Stop the child. On Posix OSs the method sends SIGTERM to the
Georg Brandl60203b42010-10-06 10:11:56 +0000707 child. On Windows the Win32 API function :c:func:`TerminateProcess` is called
Christian Heimesa342c012008-04-20 21:01:16 +0000708 to stop the child.
709
Christian Heimesa342c012008-04-20 21:01:16 +0000710
711.. method:: Popen.kill()
712
713 Kills the child. On Posix OSs the function sends SIGKILL to the child.
714 On Windows :meth:`kill` is an alias for :meth:`terminate`.
715
Christian Heimesa342c012008-04-20 21:01:16 +0000716
Georg Brandl116aa622007-08-15 14:28:22 +0000717The following attributes are also available:
718
Georg Brandl734e2682008-08-12 08:18:18 +0000719.. warning::
720
Ezio Melottiaa935df2012-08-27 10:00:05 +0300721 Use :meth:`~Popen.communicate` rather than :attr:`.stdin.write <Popen.stdin>`,
722 :attr:`.stdout.read <Popen.stdout>` or :attr:`.stderr.read <Popen.stderr>` to avoid
Georg Brandle720c0a2009-04-27 16:20:50 +0000723 deadlocks due to any of the other OS pipe buffers filling up and blocking the
724 child process.
Georg Brandl734e2682008-08-12 08:18:18 +0000725
726
Georg Brandl116aa622007-08-15 14:28:22 +0000727.. attribute:: Popen.stdin
728
Benjamin Peterson3d8814e2014-01-18 00:45:56 -0500729 If the *stdin* argument was :data:`PIPE`, this attribute is a writeable
730 stream object as returned by :func:`open`. If the *universal_newlines*
731 argument was ``True``, the stream is a text stream, otherwise it is a byte
732 stream. If the *stdin* argument was not :data:`PIPE`, this attribute is
733 ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000734
735
736.. attribute:: Popen.stdout
737
Benjamin Peterson3d8814e2014-01-18 00:45:56 -0500738 If the *stdout* argument was :data:`PIPE`, this attribute is a readable
739 stream object as returned by :func:`open`. Reading from the stream provides
740 output from the child process. If the *universal_newlines* argument was
741 ``True``, the stream is a text stream, otherwise it is a byte stream. If the
742 *stdout* argument was not :data:`PIPE`, this attribute is ``None``.
Benjamin Petersonaf69fe22014-01-18 00:49:04 -0500743
Georg Brandl116aa622007-08-15 14:28:22 +0000744
745.. attribute:: Popen.stderr
746
Benjamin Peterson3d8814e2014-01-18 00:45:56 -0500747 If the *stderr* argument was :data:`PIPE`, this attribute is a readable
748 stream object as returned by :func:`open`. Reading from the stream provides
749 error output from the child process. If the *universal_newlines* argument was
750 ``True``, the stream is a text stream, otherwise it is a byte stream. If the
751 *stderr* argument was not :data:`PIPE`, this attribute is ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000752
753
754.. attribute:: Popen.pid
755
756 The process ID of the child process.
757
Georg Brandl58bfdca2010-03-21 09:50:49 +0000758 Note that if you set the *shell* argument to ``True``, this is the process ID
759 of the spawned shell.
760
Georg Brandl116aa622007-08-15 14:28:22 +0000761
762.. attribute:: Popen.returncode
763
Christian Heimes7f044312008-01-06 17:05:40 +0000764 The child return code, set by :meth:`poll` and :meth:`wait` (and indirectly
765 by :meth:`communicate`). A ``None`` value indicates that the process
766 hasn't terminated yet.
Georg Brandl48310cd2009-01-03 21:18:54 +0000767
Christian Heimes7f044312008-01-06 17:05:40 +0000768 A negative value ``-N`` indicates that the child was terminated by signal
769 ``N`` (Unix only).
Georg Brandl116aa622007-08-15 14:28:22 +0000770
771
Brian Curtine6242d72011-04-29 22:17:51 -0500772Windows Popen Helpers
773---------------------
774
775The :class:`STARTUPINFO` class and following constants are only available
776on Windows.
777
778.. class:: STARTUPINFO()
Brian Curtin73365dd2011-04-29 22:18:33 -0500779
Brian Curtine6242d72011-04-29 22:17:51 -0500780 Partial support of the Windows
781 `STARTUPINFO <http://msdn.microsoft.com/en-us/library/ms686331(v=vs.85).aspx>`__
782 structure is used for :class:`Popen` creation.
783
784 .. attribute:: dwFlags
785
Senthil Kumarana6bac952011-07-04 11:28:30 -0700786 A bit field that determines whether certain :class:`STARTUPINFO`
787 attributes are used when the process creates a window. ::
Brian Curtine6242d72011-04-29 22:17:51 -0500788
789 si = subprocess.STARTUPINFO()
790 si.dwFlags = subprocess.STARTF_USESTDHANDLES | subprocess.STARTF_USESHOWWINDOW
791
792 .. attribute:: hStdInput
793
Senthil Kumarana6bac952011-07-04 11:28:30 -0700794 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
795 is the standard input handle for the process. If
796 :data:`STARTF_USESTDHANDLES` is not specified, the default for standard
797 input is the keyboard buffer.
Brian Curtine6242d72011-04-29 22:17:51 -0500798
799 .. attribute:: hStdOutput
800
Senthil Kumarana6bac952011-07-04 11:28:30 -0700801 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
802 is the standard output handle for the process. Otherwise, this attribute
803 is ignored and the default for standard output is the console window's
Brian Curtine6242d72011-04-29 22:17:51 -0500804 buffer.
805
806 .. attribute:: hStdError
807
Senthil Kumarana6bac952011-07-04 11:28:30 -0700808 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
809 is the standard error handle for the process. Otherwise, this attribute is
Brian Curtine6242d72011-04-29 22:17:51 -0500810 ignored and the default for standard error is the console window's buffer.
811
812 .. attribute:: wShowWindow
813
Senthil Kumarana6bac952011-07-04 11:28:30 -0700814 If :attr:`dwFlags` specifies :data:`STARTF_USESHOWWINDOW`, this attribute
Brian Curtine6242d72011-04-29 22:17:51 -0500815 can be any of the values that can be specified in the ``nCmdShow``
816 parameter for the
817 `ShowWindow <http://msdn.microsoft.com/en-us/library/ms633548(v=vs.85).aspx>`__
Senthil Kumarana6bac952011-07-04 11:28:30 -0700818 function, except for ``SW_SHOWDEFAULT``. Otherwise, this attribute is
Brian Curtine6242d72011-04-29 22:17:51 -0500819 ignored.
Brian Curtin73365dd2011-04-29 22:18:33 -0500820
Brian Curtine6242d72011-04-29 22:17:51 -0500821 :data:`SW_HIDE` is provided for this attribute. It is used when
822 :class:`Popen` is called with ``shell=True``.
823
824
825Constants
826^^^^^^^^^
827
828The :mod:`subprocess` module exposes the following constants.
829
830.. data:: STD_INPUT_HANDLE
831
832 The standard input device. Initially, this is the console input buffer,
833 ``CONIN$``.
834
835.. data:: STD_OUTPUT_HANDLE
836
837 The standard output device. Initially, this is the active console screen
838 buffer, ``CONOUT$``.
839
840.. data:: STD_ERROR_HANDLE
841
842 The standard error device. Initially, this is the active console screen
843 buffer, ``CONOUT$``.
844
845.. data:: SW_HIDE
846
847 Hides the window. Another window will be activated.
848
849.. data:: STARTF_USESTDHANDLES
850
851 Specifies that the :attr:`STARTUPINFO.hStdInput`,
Senthil Kumarana6bac952011-07-04 11:28:30 -0700852 :attr:`STARTUPINFO.hStdOutput`, and :attr:`STARTUPINFO.hStdError` attributes
Brian Curtine6242d72011-04-29 22:17:51 -0500853 contain additional information.
854
855.. data:: STARTF_USESHOWWINDOW
856
Senthil Kumarana6bac952011-07-04 11:28:30 -0700857 Specifies that the :attr:`STARTUPINFO.wShowWindow` attribute contains
Brian Curtine6242d72011-04-29 22:17:51 -0500858 additional information.
859
860.. data:: CREATE_NEW_CONSOLE
861
862 The new process has a new console, instead of inheriting its parent's
863 console (the default).
Brian Curtin73365dd2011-04-29 22:18:33 -0500864
Brian Curtin30401932011-04-29 22:20:57 -0500865.. data:: CREATE_NEW_PROCESS_GROUP
866
867 A :class:`Popen` ``creationflags`` parameter to specify that a new process
868 group will be created. This flag is necessary for using :func:`os.kill`
869 on the subprocess.
870
871 This flag is ignored if :data:`CREATE_NEW_CONSOLE` is specified.
872
Brian Curtine6242d72011-04-29 22:17:51 -0500873
Benjamin Petersondcf97b92008-07-02 17:30:14 +0000874.. _subprocess-replacements:
875
Ezio Melotti402f75d2012-11-08 10:07:10 +0200876Replacing Older Functions with the :mod:`subprocess` Module
877-----------------------------------------------------------
Georg Brandl116aa622007-08-15 14:28:22 +0000878
Nick Coghlanc29248f2011-11-08 20:49:23 +1000879In this section, "a becomes b" means that b can be used as a replacement for a.
Georg Brandl116aa622007-08-15 14:28:22 +0000880
881.. note::
882
Nick Coghlanc29248f2011-11-08 20:49:23 +1000883 All "a" functions in this section fail (more or less) silently if the
884 executed program cannot be found; the "b" replacements raise :exc:`OSError`
885 instead.
Georg Brandl116aa622007-08-15 14:28:22 +0000886
Nick Coghlanc29248f2011-11-08 20:49:23 +1000887 In addition, the replacements using :func:`check_output` will fail with a
888 :exc:`CalledProcessError` if the requested operation produces a non-zero
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +0300889 return code. The output is still available as the
890 :attr:`~CalledProcessError.output` attribute of the raised exception.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000891
892In the following examples, we assume that the relevant functions have already
Ezio Melotti402f75d2012-11-08 10:07:10 +0200893been imported from the :mod:`subprocess` module.
Georg Brandl116aa622007-08-15 14:28:22 +0000894
895
896Replacing /bin/sh shell backquote
897^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
898
899::
900
901 output=`mycmd myarg`
Nick Coghlanc29248f2011-11-08 20:49:23 +1000902 # becomes
903 output = check_output(["mycmd", "myarg"])
Georg Brandl116aa622007-08-15 14:28:22 +0000904
905
Benjamin Petersonf10a79a2008-10-11 00:49:57 +0000906Replacing shell pipeline
907^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000908
909::
910
911 output=`dmesg | grep hda`
Nick Coghlanc29248f2011-11-08 20:49:23 +1000912 # becomes
Georg Brandl116aa622007-08-15 14:28:22 +0000913 p1 = Popen(["dmesg"], stdout=PIPE)
914 p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
Gregory P. Smithe09d2f12011-02-05 21:47:25 +0000915 p1.stdout.close() # Allow p1 to receive a SIGPIPE if p2 exits.
Georg Brandl116aa622007-08-15 14:28:22 +0000916 output = p2.communicate()[0]
917
Gregory P. Smithe09d2f12011-02-05 21:47:25 +0000918The p1.stdout.close() call after starting the p2 is important in order for p1
919to receive a SIGPIPE if p2 exits before p1.
Georg Brandl116aa622007-08-15 14:28:22 +0000920
Nick Coghlanc29248f2011-11-08 20:49:23 +1000921Alternatively, for trusted input, the shell's own pipeline support may still
R David Murray28b8b942012-04-03 08:46:48 -0400922be used directly::
Nick Coghlanc29248f2011-11-08 20:49:23 +1000923
924 output=`dmesg | grep hda`
925 # becomes
926 output=check_output("dmesg | grep hda", shell=True)
927
928
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000929Replacing :func:`os.system`
930^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000931
932::
933
934 sts = os.system("mycmd" + " myarg")
Nick Coghlanc29248f2011-11-08 20:49:23 +1000935 # becomes
936 sts = call("mycmd" + " myarg", shell=True)
Georg Brandl116aa622007-08-15 14:28:22 +0000937
938Notes:
939
940* Calling the program through the shell is usually not required.
941
Georg Brandl116aa622007-08-15 14:28:22 +0000942A more realistic example would look like this::
943
944 try:
945 retcode = call("mycmd" + " myarg", shell=True)
946 if retcode < 0:
Collin Winterc79461b2007-09-01 23:34:30 +0000947 print("Child was terminated by signal", -retcode, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +0000948 else:
Collin Winterc79461b2007-09-01 23:34:30 +0000949 print("Child returned", retcode, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +0000950 except OSError as e:
Collin Winterc79461b2007-09-01 23:34:30 +0000951 print("Execution failed:", e, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +0000952
953
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000954Replacing the :func:`os.spawn <os.spawnl>` family
955^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000956
957P_NOWAIT example::
958
959 pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg")
960 ==>
961 pid = Popen(["/bin/mycmd", "myarg"]).pid
962
963P_WAIT example::
964
965 retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg")
966 ==>
967 retcode = call(["/bin/mycmd", "myarg"])
968
969Vector example::
970
971 os.spawnvp(os.P_NOWAIT, path, args)
972 ==>
973 Popen([path] + args[1:])
974
975Environment example::
976
977 os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env)
978 ==>
979 Popen(["/bin/mycmd", "myarg"], env={"PATH": "/usr/bin"})
980
981
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000982
983Replacing :func:`os.popen`, :func:`os.popen2`, :func:`os.popen3`
984^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000985
986::
987
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000988 (child_stdin, child_stdout) = os.popen2(cmd, mode, bufsize)
Georg Brandl116aa622007-08-15 14:28:22 +0000989 ==>
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000990 p = Popen(cmd, shell=True, bufsize=bufsize,
991 stdin=PIPE, stdout=PIPE, close_fds=True)
992 (child_stdin, child_stdout) = (p.stdin, p.stdout)
Georg Brandl116aa622007-08-15 14:28:22 +0000993
994::
995
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000996 (child_stdin,
997 child_stdout,
998 child_stderr) = os.popen3(cmd, mode, bufsize)
Georg Brandl116aa622007-08-15 14:28:22 +0000999 ==>
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001000 p = Popen(cmd, shell=True, bufsize=bufsize,
1001 stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True)
1002 (child_stdin,
1003 child_stdout,
1004 child_stderr) = (p.stdin, p.stdout, p.stderr)
1005
1006::
1007
1008 (child_stdin, child_stdout_and_stderr) = os.popen4(cmd, mode, bufsize)
1009 ==>
1010 p = Popen(cmd, shell=True, bufsize=bufsize,
1011 stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True)
1012 (child_stdin, child_stdout_and_stderr) = (p.stdin, p.stdout)
1013
1014Return code handling translates as follows::
1015
1016 pipe = os.popen(cmd, 'w')
1017 ...
1018 rc = pipe.close()
Stefan Krahfc9e08d2010-07-14 10:16:11 +00001019 if rc is not None and rc >> 8:
Ezio Melotti985e24d2009-09-13 07:54:02 +00001020 print("There were some errors")
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001021 ==>
1022 process = Popen(cmd, 'w', stdin=PIPE)
1023 ...
1024 process.stdin.close()
1025 if process.wait() != 0:
Ezio Melotti985e24d2009-09-13 07:54:02 +00001026 print("There were some errors")
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001027
1028
1029Replacing functions from the :mod:`popen2` module
1030^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1031
1032.. note::
1033
1034 If the cmd argument to popen2 functions is a string, the command is executed
1035 through /bin/sh. If it is a list, the command is directly executed.
1036
1037::
1038
1039 (child_stdout, child_stdin) = popen2.popen2("somestring", bufsize, mode)
1040 ==>
1041 p = Popen(["somestring"], shell=True, bufsize=bufsize,
1042 stdin=PIPE, stdout=PIPE, close_fds=True)
1043 (child_stdout, child_stdin) = (p.stdout, p.stdin)
1044
1045::
1046
1047 (child_stdout, child_stdin) = popen2.popen2(["mycmd", "myarg"], bufsize, mode)
1048 ==>
1049 p = Popen(["mycmd", "myarg"], bufsize=bufsize,
1050 stdin=PIPE, stdout=PIPE, close_fds=True)
1051 (child_stdout, child_stdin) = (p.stdout, p.stdin)
1052
1053:class:`popen2.Popen3` and :class:`popen2.Popen4` basically work as
1054:class:`subprocess.Popen`, except that:
1055
1056* :class:`Popen` raises an exception if the execution fails.
1057
1058* the *capturestderr* argument is replaced with the *stderr* argument.
1059
1060* ``stdin=PIPE`` and ``stdout=PIPE`` must be specified.
1061
1062* popen2 closes all file descriptors by default, but you have to specify
Gregory P. Smithf5604852010-12-13 06:45:02 +00001063 ``close_fds=True`` with :class:`Popen` to guarantee this behavior on
1064 all platforms or past Python versions.
Eli Bendersky046a7642011-04-15 07:23:26 +03001065
Nick Coghlanc29248f2011-11-08 20:49:23 +10001066
Nick Coghlanc29248f2011-11-08 20:49:23 +10001067Legacy Shell Invocation Functions
Nick Coghlan32e4a582011-11-08 21:50:58 +10001068---------------------------------
Nick Coghlanc29248f2011-11-08 20:49:23 +10001069
1070This module also provides the following legacy functions from the 2.x
1071``commands`` module. These operations implicitly invoke the system shell and
1072none of the guarantees described above regarding security and exception
1073handling consistency are valid for these functions.
1074
1075.. function:: getstatusoutput(cmd)
1076
1077 Return ``(status, output)`` of executing *cmd* in a shell.
1078
Tim Golden60798142013-11-05 12:57:25 +00001079 Execute the string *cmd* in a shell with :meth:`Popen.check_output` and
1080 return a 2-tuple ``(status, output)``. Universal newlines mode is used;
1081 see the notes on :ref:`frequently-used-arguments` for more details.
Tim Golden3a2abb52013-11-03 18:24:50 +00001082
1083 A trailing newline is stripped from the output.
1084 The exit status for the command can be interpreted
Nick Coghlanc29248f2011-11-08 20:49:23 +10001085 according to the rules for the C function :c:func:`wait`. Example::
1086
1087 >>> subprocess.getstatusoutput('ls /bin/ls')
1088 (0, '/bin/ls')
1089 >>> subprocess.getstatusoutput('cat /bin/junk')
1090 (256, 'cat: /bin/junk: No such file or directory')
1091 >>> subprocess.getstatusoutput('/bin/junk')
1092 (256, 'sh: /bin/junk: not found')
1093
Tim Golden3a2abb52013-11-03 18:24:50 +00001094 .. versionchanged:: 3.3
1095 Availability: Unix & Windows
Nick Coghlanc29248f2011-11-08 20:49:23 +10001096
1097
1098.. function:: getoutput(cmd)
1099
1100 Return output (stdout and stderr) of executing *cmd* in a shell.
1101
1102 Like :func:`getstatusoutput`, except the exit status is ignored and the return
1103 value is a string containing the command's output. Example::
1104
1105 >>> subprocess.getoutput('ls /bin/ls')
1106 '/bin/ls'
1107
Tim Golden3a2abb52013-11-03 18:24:50 +00001108 .. versionchanged:: 3.3
1109 Availability: Unix & Windows
Nick Coghlanc29248f2011-11-08 20:49:23 +10001110
Nick Coghlan32e4a582011-11-08 21:50:58 +10001111
Eli Bendersky046a7642011-04-15 07:23:26 +03001112Notes
1113-----
1114
1115.. _converting-argument-sequence:
1116
1117Converting an argument sequence to a string on Windows
1118^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1119
1120On Windows, an *args* sequence is converted to a string that can be parsed
1121using the following rules (which correspond to the rules used by the MS C
1122runtime):
1123
11241. Arguments are delimited by white space, which is either a
1125 space or a tab.
1126
11272. A string surrounded by double quotation marks is
1128 interpreted as a single argument, regardless of white space
1129 contained within. A quoted string can be embedded in an
1130 argument.
1131
11323. A double quotation mark preceded by a backslash is
1133 interpreted as a literal double quotation mark.
1134
11354. Backslashes are interpreted literally, unless they
1136 immediately precede a double quotation mark.
1137
11385. If backslashes immediately precede a double quotation mark,
1139 every pair of backslashes is interpreted as a literal
1140 backslash. If the number of backslashes is odd, the last
1141 backslash escapes the next double quotation mark as
1142 described in rule 3.
1143
Eli Benderskyd2112312011-04-15 07:26:28 +03001144
Éric Araujo9bce3112011-07-27 18:29:31 +02001145.. seealso::
1146
1147 :mod:`shlex`
1148 Module which provides function to parse and escape command lines.