blob: 9f2f82d43ab3f964a39131048184830f1676e90e [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
119.. function:: check_output(args, *, 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
132 supplied arguments other than *timeout* directly through to that interface.
133 In addition, *stdout* is not permitted as an argument, as it is used
134 internally to collect the output from the subprocess.
135
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
141 Examples::
142
143 >>> subprocess.check_output(["echo", "Hello World!"])
144 b'Hello World!\n'
145
146 >>> subprocess.check_output(["echo", "Hello World!"], universal_newlines=True)
147 'Hello World!\n'
148
149 >>> subprocess.check_output("exit 1", shell=True)
150 Traceback (most recent call last):
151 ...
152 subprocess.CalledProcessError: Command 'exit 1' returned non-zero exit status 1
153
154 By default, this function will return the data as encoded bytes. The actual
155 encoding of the output data may depend on the command being invoked, so the
156 decoding to text will often need to be handled at the application level.
157
158 This behaviour may be overridden by setting *universal_newlines* to
Andrew Svetlov50be4522012-08-13 22:09:04 +0300159 ``True`` as described below in :ref:`frequently-used-arguments`.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000160
161 To also capture standard error in the result, use
162 ``stderr=subprocess.STDOUT``::
163
164 >>> subprocess.check_output(
165 ... "ls non_existent_file; exit 0",
166 ... stderr=subprocess.STDOUT,
167 ... shell=True)
168 'ls: non_existent_file: No such file or directory\n'
169
Nick Coghlan217f05b2011-11-08 22:11:21 +1000170 .. versionadded:: 3.1
Nick Coghlanc29248f2011-11-08 20:49:23 +1000171
Georg Brandl44ea77b2013-03-28 13:28:44 +0100172 ..
173
Nick Coghlanc29248f2011-11-08 20:49:23 +1000174 .. warning::
175
176 Invoking the system shell with ``shell=True`` can be a security hazard
177 if combined with untrusted input. See the warning under
178 :ref:`frequently-used-arguments` for details.
179
180 .. note::
181
182 Do not use ``stderr=PIPE`` with this function. As the pipe is not being
183 read in the current process, the child process may block if it
184 generates enough output to the pipe to fill up the OS pipe buffer.
185
Nick Coghlan217f05b2011-11-08 22:11:21 +1000186 .. versionchanged:: 3.3
187 *timeout* was added.
188
189
190.. data:: DEVNULL
191
192 Special value that can be used as the *stdin*, *stdout* or *stderr* argument
193 to :class:`Popen` and indicates that the special file :data:`os.devnull`
194 will be used.
195
196 .. versionadded:: 3.3
197
Nick Coghlanc29248f2011-11-08 20:49:23 +1000198
199.. data:: PIPE
200
201 Special value that can be used as the *stdin*, *stdout* or *stderr* argument
202 to :class:`Popen` and indicates that a pipe to the standard stream should be
203 opened.
204
205
206.. data:: STDOUT
207
208 Special value that can be used as the *stderr* argument to :class:`Popen` and
209 indicates that standard error should go into the same handle as standard
210 output.
211
212
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300213.. exception:: SubprocessError
214
215 Base class for all other exceptions from this module.
216
217 .. versionadded:: 3.3
218
219
220.. exception:: TimeoutExpired
221
222 Subclass of :exc:`SubprocessError`, raised when a timeout expires
223 while waiting for a child process.
224
225 .. attribute:: cmd
226
227 Command that was used to spawn the child process.
228
229 .. attribute:: timeout
230
231 Timeout in seconds.
232
233 .. attribute:: output
234
235 Output of the child process if this exception is raised by
236 :func:`check_output`. Otherwise, ``None``.
237
238 .. versionadded:: 3.3
239
240
241.. exception:: CalledProcessError
242
243 Subclass of :exc:`SubprocessError`, raised when a process run by
244 :func:`check_call` or :func:`check_output` returns a non-zero exit status.
245
246 .. attribute:: returncode
247
248 Exit status of the child process.
249
250 .. attribute:: cmd
251
252 Command that was used to spawn the child process.
253
254 .. attribute:: output
255
256 Output of the child process if this exception is raised by
257 :func:`check_output`. Otherwise, ``None``.
258
259
260
Nick Coghlanc29248f2011-11-08 20:49:23 +1000261.. _frequently-used-arguments:
262
263Frequently Used Arguments
264^^^^^^^^^^^^^^^^^^^^^^^^^
265
266To support a wide variety of use cases, the :class:`Popen` constructor (and
267the convenience functions) accept a large number of optional arguments. For
268most typical use cases, many of these arguments can be safely left at their
269default values. The arguments that are most commonly needed are:
270
271 *args* is required for all calls and should be a string, or a sequence of
272 program arguments. Providing a sequence of arguments is generally
273 preferred, as it allows the module to take care of any required escaping
274 and quoting of arguments (e.g. to permit spaces in file names). If passing
275 a single string, either *shell* must be :const:`True` (see below) or else
276 the string must simply name the program to be executed without specifying
277 any arguments.
278
279 *stdin*, *stdout* and *stderr* specify the executed program's standard input,
280 standard output and standard error file handles, respectively. Valid values
Nick Coghlan217f05b2011-11-08 22:11:21 +1000281 are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive
282 integer), an existing file object, and ``None``. :data:`PIPE` indicates
283 that a new pipe to the child should be created. :data:`DEVNULL` indicates
284 that the special file :data:`os.devnull` will be used. With the default
285 settings of ``None``, no redirection will occur; the child's file handles
286 will be inherited from the parent. Additionally, *stderr* can be
287 :data:`STDOUT`, which indicates that the stderr data from the child
288 process should be captured into the same file handle as for *stdout*.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000289
R David Murray1b00f252012-08-15 10:43:58 -0400290 .. index::
291 single: universal newlines; subprocess module
292
Ronald Oussoren385521c2013-07-07 09:26:45 +0200293 If *universal_newlines* is ``False`` the file objects *stdin*, *stdout* and
294 *stderr* will be opened as binary streams, and no line ending conversion is
295 done.
296
297 If *universal_newlines* is ``True``, these file objects
298 will be opened as text streams in :term:`universal newlines` mode
R David Murray0689ce42012-08-15 11:13:31 -0400299 using the encoding returned by :func:`locale.getpreferredencoding(False)
Ronald Oussoren385521c2013-07-07 09:26:45 +0200300 <locale.getpreferredencoding>`. For *stdin*, line ending characters
R David Murray0689ce42012-08-15 11:13:31 -0400301 ``'\n'`` in the input will be converted to the default line separator
302 :data:`os.linesep`. For *stdout* and *stderr*, all line endings in the
303 output will be converted to ``'\n'``. For more information see the
304 documentation of the :class:`io.TextIOWrapper` class when the *newline*
305 argument to its constructor is ``None``.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000306
Andrew Svetlov50be4522012-08-13 22:09:04 +0300307 .. note::
308
Gregory P. Smith1f8a40b2013-03-20 18:32:03 -0700309 The newlines attribute of the file objects :attr:`Popen.stdin`,
310 :attr:`Popen.stdout` and :attr:`Popen.stderr` are not updated by
311 the :meth:`Popen.communicate` method.
Andrew Svetlov50be4522012-08-13 22:09:04 +0300312
313 If *shell* is ``True``, the specified command will be executed through
Ezio Melotti186d5232012-09-15 08:34:08 +0300314 the shell. This can be useful if you are using Python primarily for the
Nick Coghlanc29248f2011-11-08 20:49:23 +1000315 enhanced control flow it offers over most system shells and still want
Ezio Melotti186d5232012-09-15 08:34:08 +0300316 convenient access to other shell features such as shell pipes, filename
317 wildcards, environment variable expansion, and expansion of ``~`` to a
318 user's home directory. However, note that Python itself offers
319 implementations of many shell-like features (in particular, :mod:`glob`,
320 :mod:`fnmatch`, :func:`os.walk`, :func:`os.path.expandvars`,
321 :func:`os.path.expanduser`, and :mod:`shutil`).
Nick Coghlanc29248f2011-11-08 20:49:23 +1000322
Andrew Svetlov4805fa82012-08-13 22:11:14 +0300323 .. versionchanged:: 3.3
324 When *universal_newlines* is ``True``, the class uses the encoding
325 :func:`locale.getpreferredencoding(False) <locale.getpreferredencoding>`
326 instead of ``locale.getpreferredencoding()``. See the
327 :class:`io.TextIOWrapper` class for more information on this change.
328
Nick Coghlanc29248f2011-11-08 20:49:23 +1000329 .. warning::
330
331 Executing shell commands that incorporate unsanitized input from an
332 untrusted source makes a program vulnerable to `shell injection
333 <http://en.wikipedia.org/wiki/Shell_injection#Shell_injection>`_,
334 a serious security flaw which can result in arbitrary command execution.
Chris Jerdonekcc32a682012-10-10 22:52:22 -0700335 For this reason, the use of ``shell=True`` is **strongly discouraged**
336 in cases where the command string is constructed from external input::
Nick Coghlanc29248f2011-11-08 20:49:23 +1000337
338 >>> from subprocess import call
339 >>> filename = input("What file would you like to display?\n")
340 What file would you like to display?
341 non_existent; rm -rf / #
342 >>> call("cat " + filename, shell=True) # Uh-oh. This will end badly...
343
344 ``shell=False`` disables all shell based features, but does not suffer
345 from this vulnerability; see the Note in the :class:`Popen` constructor
346 documentation for helpful hints in getting ``shell=False`` to work.
347
Andrew Svetlovc2415eb2012-10-28 11:42:26 +0200348 When using ``shell=True``, :func:`shlex.quote` can be used to properly
349 escape whitespace and shell metacharacters in strings that are going to
350 be used to construct shell commands.
351
Nick Coghlanc29248f2011-11-08 20:49:23 +1000352These options, along with all of the other options, are described in more
353detail in the :class:`Popen` constructor documentation.
354
355
Sandro Tosi1526ad12011-12-25 11:27:37 +0100356Popen Constructor
Sandro Tosi3e6c8142011-12-25 17:14:11 +0100357^^^^^^^^^^^^^^^^^
Nick Coghlanc29248f2011-11-08 20:49:23 +1000358
359The underlying process creation and management in this module is handled by
360the :class:`Popen` class. It offers a lot of flexibility so that developers
361are able to handle the less common cases not covered by the convenience
362functions.
Georg Brandl116aa622007-08-15 14:28:22 +0000363
364
Gregory P. Smitha1ed5392013-03-23 11:44:25 -0700365.. class:: Popen(args, bufsize=-1, executable=None, stdin=None, stdout=None, \
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700366 stderr=None, preexec_fn=None, close_fds=True, shell=False, \
367 cwd=None, env=None, universal_newlines=False, \
368 startupinfo=None, creationflags=0, restore_signals=True, \
369 start_new_session=False, pass_fds=())
Georg Brandl116aa622007-08-15 14:28:22 +0000370
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700371 Execute a child program in a new process. On Unix, the class uses
372 :meth:`os.execvp`-like behavior to execute the child program. On Windows,
373 the class uses the Windows ``CreateProcess()`` function. The arguments to
374 :class:`Popen` are as follows.
Georg Brandl116aa622007-08-15 14:28:22 +0000375
Chris Jerdonek470ee392012-10-08 23:06:57 -0700376 *args* should be a sequence of program arguments or else a single string.
377 By default, the program to execute is the first item in *args* if *args* is
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700378 a sequence. If *args* is a string, the interpretation is
379 platform-dependent and described below. See the *shell* and *executable*
380 arguments for additional differences from the default behavior. Unless
381 otherwise stated, it is recommended to pass *args* as a sequence.
Georg Brandl116aa622007-08-15 14:28:22 +0000382
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700383 On Unix, if *args* is a string, the string is interpreted as the name or
384 path of the program to execute. However, this can only be done if not
385 passing arguments to the program.
Georg Brandl116aa622007-08-15 14:28:22 +0000386
R. David Murray5973e4d2010-02-04 16:41:57 +0000387 .. note::
388
389 :meth:`shlex.split` can be useful when determining the correct
390 tokenization for *args*, especially in complex cases::
391
392 >>> import shlex, subprocess
R. David Murray73bc75b2010-02-05 16:25:12 +0000393 >>> command_line = input()
R. David Murray5973e4d2010-02-04 16:41:57 +0000394 /bin/vikings -input eggs.txt -output "spam spam.txt" -cmd "echo '$MONEY'"
395 >>> args = shlex.split(command_line)
396 >>> print(args)
397 ['/bin/vikings', '-input', 'eggs.txt', '-output', 'spam spam.txt', '-cmd', "echo '$MONEY'"]
398 >>> p = subprocess.Popen(args) # Success!
399
400 Note in particular that options (such as *-input*) and arguments (such
401 as *eggs.txt*) that are separated by whitespace in the shell go in separate
402 list elements, while arguments that need quoting or backslash escaping when
403 used in the shell (such as filenames containing spaces or the *echo* command
404 shown above) are single list elements.
405
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700406 On Windows, if *args* is a sequence, it will be converted to a string in a
407 manner described in :ref:`converting-argument-sequence`. This is because
408 the underlying ``CreateProcess()`` operates on strings.
Chris Jerdonek470ee392012-10-08 23:06:57 -0700409
410 The *shell* argument (which defaults to *False*) specifies whether to use
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700411 the shell as the program to execute. If *shell* is *True*, it is
412 recommended to pass *args* as a string rather than as a sequence.
Chris Jerdonek470ee392012-10-08 23:06:57 -0700413
414 On Unix with ``shell=True``, the shell defaults to :file:`/bin/sh`. If
415 *args* is a string, the string specifies the command
416 to execute through the shell. This means that the string must be
R. David Murray5973e4d2010-02-04 16:41:57 +0000417 formatted exactly as it would be when typed at the shell prompt. This
418 includes, for example, quoting or backslash escaping filenames with spaces in
419 them. If *args* is a sequence, the first item specifies the command string, and
420 any additional items will be treated as additional arguments to the shell
Chris Jerdonek470ee392012-10-08 23:06:57 -0700421 itself. That is to say, :class:`Popen` does the equivalent of::
R. David Murray5973e4d2010-02-04 16:41:57 +0000422
423 Popen(['/bin/sh', '-c', args[0], args[1], ...])
Georg Brandl116aa622007-08-15 14:28:22 +0000424
Chris Jerdonek470ee392012-10-08 23:06:57 -0700425 On Windows with ``shell=True``, the :envvar:`COMSPEC` environment variable
426 specifies the default shell. The only time you need to specify
427 ``shell=True`` on Windows is when the command you wish to execute is built
428 into the shell (e.g. :command:`dir` or :command:`copy`). You do not need
429 ``shell=True`` to run a batch file or console-based executable.
Georg Brandl116aa622007-08-15 14:28:22 +0000430
Chris Jerdonekcc32a682012-10-10 22:52:22 -0700431 .. warning::
432
433 Passing ``shell=True`` can be a security hazard if combined with
434 untrusted input. See the warning under :ref:`frequently-used-arguments`
435 for details.
436
Gregory P. Smitha1ed5392013-03-23 11:44:25 -0700437 *bufsize* will be supplied as the corresponding argument to the :meth:`io.open`
438 function when creating the stdin/stdout/stderr pipe file objects:
439 :const:`0` means unbuffered (read and write are one system call and can return short),
440 :const:`1` means line buffered, any other positive value means use a buffer of
441 approximately that size. A negative bufsize (the default) means
442 the system default of io.DEFAULT_BUFFER_SIZE will be used.
Georg Brandl116aa622007-08-15 14:28:22 +0000443
Georg Brandl37b70bb2013-11-25 08:48:37 +0100444 .. versionchanged:: 3.3.1
Gregory P. Smitha1ed5392013-03-23 11:44:25 -0700445 *bufsize* now defaults to -1 to enable buffering by default to match the
Georg Brandl37b70bb2013-11-25 08:48:37 +0100446 behavior that most code expects. In versions prior to Python 3.2.4 and
447 3.3.1 it incorrectly defaulted to :const:`0` which was unbuffered
448 and allowed short reads. This was unintentional and did not match the
449 behavior of Python 2 as most code expected.
Antoine Pitrou4b876202010-06-02 17:10:49 +0000450
Chris Jerdonek470ee392012-10-08 23:06:57 -0700451 The *executable* argument specifies a replacement program to execute. It
452 is very seldom needed. When ``shell=False``, *executable* replaces the
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700453 program to execute specified by *args*. However, the original *args* is
454 still passed to the program. Most programs treat the program specified
455 by *args* as the command name, which can then be different from the program
456 actually executed. On Unix, the *args* name
Chris Jerdonek470ee392012-10-08 23:06:57 -0700457 becomes the display name for the executable in utilities such as
458 :program:`ps`. If ``shell=True``, on Unix the *executable* argument
459 specifies a replacement shell for the default :file:`/bin/sh`.
Georg Brandl116aa622007-08-15 14:28:22 +0000460
Nick Coghlanc29248f2011-11-08 20:49:23 +1000461 *stdin*, *stdout* and *stderr* specify the executed program's standard input,
Georg Brandlaf265f42008-12-07 15:06:20 +0000462 standard output and standard error file handles, respectively. Valid values
Ross Lagerwallba102ec2011-03-16 18:40:25 +0200463 are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive
464 integer), an existing :term:`file object`, and ``None``. :data:`PIPE`
465 indicates that a new pipe to the child should be created. :data:`DEVNULL`
Nick Coghlan217f05b2011-11-08 22:11:21 +1000466 indicates that the special file :data:`os.devnull` will be used. With the
467 default settings of ``None``, no redirection will occur; the child's file
468 handles will be inherited from the parent. Additionally, *stderr* can be
469 :data:`STDOUT`, which indicates that the stderr data from the applications
470 should be captured into the same file handle as for stdout.
Georg Brandl116aa622007-08-15 14:28:22 +0000471
472 If *preexec_fn* is set to a callable object, this object will be called in the
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000473 child process just before the child is executed.
474 (Unix only)
475
476 .. warning::
477
478 The *preexec_fn* parameter is not safe to use in the presence of threads
479 in your application. The child process could deadlock before exec is
480 called.
481 If you must use it, keep it trivial! Minimize the number of libraries
482 you call into.
483
484 .. note::
485
486 If you need to modify the environment for the child use the *env*
487 parameter rather than doing it in a *preexec_fn*.
488 The *start_new_session* parameter can take the place of a previously
489 common use of *preexec_fn* to call os.setsid() in the child.
Georg Brandl116aa622007-08-15 14:28:22 +0000490
491 If *close_fds* is true, all file descriptors except :const:`0`, :const:`1` and
492 :const:`2` will be closed before the child process is executed. (Unix only).
Gregory P. Smith8edd99d2010-12-14 13:43:30 +0000493 The default varies by platform: Always true on Unix. On Windows it is
494 true when *stdin*/*stdout*/*stderr* are :const:`None`, false otherwise.
Gregory P. Smithd23047b2010-12-04 09:10:44 +0000495 On Windows, if *close_fds* is true then no handles will be inherited by the
Georg Brandl116aa622007-08-15 14:28:22 +0000496 child process. Note that on Windows, you cannot set *close_fds* to true and
497 also redirect the standard handles by setting *stdin*, *stdout* or *stderr*.
498
Gregory P. Smith8edd99d2010-12-14 13:43:30 +0000499 .. versionchanged:: 3.2
500 The default for *close_fds* was changed from :const:`False` to
501 what is described above.
502
503 *pass_fds* is an optional sequence of file descriptors to keep open
504 between the parent and child. Providing any *pass_fds* forces
505 *close_fds* to be :const:`True`. (Unix only)
506
507 .. versionadded:: 3.2
508 The *pass_fds* parameter was added.
Georg Brandl116aa622007-08-15 14:28:22 +0000509
Chris Jerdonekec3ea942012-09-30 00:10:28 -0700510 If *cwd* is not ``None``, the function changes the working directory to
511 *cwd* before executing the child. In particular, the function looks for
512 *executable* (or for the first item in *args*) relative to *cwd* if the
513 executable path is a relative path.
Georg Brandl116aa622007-08-15 14:28:22 +0000514
Serhiy Storchakafbc1c262013-11-29 12:17:13 +0200515 If *restore_signals* is true (the default) all signals that Python has set to
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000516 SIG_IGN are restored to SIG_DFL in the child process before the exec.
517 Currently this includes the SIGPIPE, SIGXFZ and SIGXFSZ signals.
518 (Unix only)
519
520 .. versionchanged:: 3.2
521 *restore_signals* was added.
522
Serhiy Storchakafbc1c262013-11-29 12:17:13 +0200523 If *start_new_session* is true the setsid() system call will be made in the
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000524 child process prior to the execution of the subprocess. (Unix only)
525
526 .. versionchanged:: 3.2
527 *start_new_session* was added.
528
Christian Heimesa342c012008-04-20 21:01:16 +0000529 If *env* is not ``None``, it must be a mapping that defines the environment
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000530 variables for the new process; these are used instead of the default
531 behavior of inheriting the current process' environment.
Georg Brandl116aa622007-08-15 14:28:22 +0000532
R. David Murray1055e892009-04-16 18:15:32 +0000533 .. note::
R. David Murrayf4ac1492009-04-15 22:35:15 +0000534
Georg Brandl2708f3a2009-12-20 14:38:23 +0000535 If specified, *env* must provide any variables required for the program to
536 execute. On Windows, in order to run a `side-by-side assembly`_ the
537 specified *env* **must** include a valid :envvar:`SystemRoot`.
R. David Murrayf4ac1492009-04-15 22:35:15 +0000538
R. David Murray1055e892009-04-16 18:15:32 +0000539 .. _side-by-side assembly: http://en.wikipedia.org/wiki/Side-by-Side_Assembly
540
Andrew Svetlov50be4522012-08-13 22:09:04 +0300541 If *universal_newlines* is ``True``, the file objects *stdin*, *stdout*
R David Murray1b00f252012-08-15 10:43:58 -0400542 and *stderr* are opened as text streams in universal newlines mode, as
Ronald Oussorena6865052013-07-06 10:23:59 +0200543 described above in :ref:`frequently-used-arguments`, otherwise they are
544 opened as binary streams.
Georg Brandl116aa622007-08-15 14:28:22 +0000545
Brian Curtine6242d72011-04-29 22:17:51 -0500546 If given, *startupinfo* will be a :class:`STARTUPINFO` object, which is
547 passed to the underlying ``CreateProcess`` function.
Brian Curtin30401932011-04-29 22:20:57 -0500548 *creationflags*, if given, can be :data:`CREATE_NEW_CONSOLE` or
549 :data:`CREATE_NEW_PROCESS_GROUP`. (Windows only)
Georg Brandl116aa622007-08-15 14:28:22 +0000550
Gregory P. Smith6b657452011-05-11 21:42:08 -0700551 Popen objects are supported as context managers via the :keyword:`with` statement:
552 on exit, standard file descriptors are closed, and the process is waited for.
Brian Curtin79cdb662010-12-03 02:46:02 +0000553 ::
554
555 with Popen(["ifconfig"], stdout=PIPE) as proc:
556 log.write(proc.stdout.read())
557
558 .. versionchanged:: 3.2
559 Added context manager support.
560
Georg Brandl116aa622007-08-15 14:28:22 +0000561
Georg Brandl116aa622007-08-15 14:28:22 +0000562Exceptions
563^^^^^^^^^^
564
565Exceptions raised in the child process, before the new program has started to
566execute, will be re-raised in the parent. Additionally, the exception object
567will have one extra attribute called :attr:`child_traceback`, which is a string
Georg Brandl81675612010-08-26 14:30:56 +0000568containing traceback information from the child's point of view.
Georg Brandl116aa622007-08-15 14:28:22 +0000569
570The most common exception raised is :exc:`OSError`. This occurs, for example,
571when trying to execute a non-existent file. Applications should prepare for
572:exc:`OSError` exceptions.
573
574A :exc:`ValueError` will be raised if :class:`Popen` is called with invalid
575arguments.
576
Nick Coghlanc29248f2011-11-08 20:49:23 +1000577:func:`check_call` and :func:`check_output` will raise
578:exc:`CalledProcessError` if the called process returns a non-zero return
579code.
Georg Brandl116aa622007-08-15 14:28:22 +0000580
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400581All of the functions and methods that accept a *timeout* parameter, such as
582:func:`call` and :meth:`Popen.communicate` will raise :exc:`TimeoutExpired` if
583the timeout expires before the process exits.
584
Ronald Oussorenc1577902011-03-16 10:03:10 -0400585Exceptions defined in this module all inherit from :exc:`SubprocessError`.
Gregory P. Smith54d412e2011-03-14 14:08:43 -0400586
587 .. versionadded:: 3.3
588 The :exc:`SubprocessError` base class was added.
589
Georg Brandl116aa622007-08-15 14:28:22 +0000590
591Security
592^^^^^^^^
593
Nick Coghlanc29248f2011-11-08 20:49:23 +1000594Unlike some other popen functions, this implementation will never call a
595system shell implicitly. This means that all characters, including shell
596metacharacters, can safely be passed to child processes. Obviously, if the
597shell is invoked explicitly, then it is the application's responsibility to
598ensure that all whitespace and metacharacters are quoted appropriately.
Georg Brandl116aa622007-08-15 14:28:22 +0000599
600
601Popen Objects
602-------------
603
604Instances of the :class:`Popen` class have the following methods:
605
606
607.. method:: Popen.poll()
608
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +0300609 Check if child process has terminated. Set and return
610 :attr:`~Popen.returncode` attribute.
Georg Brandl116aa622007-08-15 14:28:22 +0000611
612
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400613.. method:: Popen.wait(timeout=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000614
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +0300615 Wait for child process to terminate. Set and return
616 :attr:`~Popen.returncode` attribute.
Georg Brandl116aa622007-08-15 14:28:22 +0000617
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400618 If the process does not terminate after *timeout* seconds, raise a
619 :exc:`TimeoutExpired` exception. It is safe to catch this exception and
620 retry the wait.
621
Georg Brandl734e2682008-08-12 08:18:18 +0000622 .. warning::
623
Philip Jenveyb0896842009-12-03 02:29:36 +0000624 This will deadlock when using ``stdout=PIPE`` and/or
625 ``stderr=PIPE`` and the child process generates enough output to
626 a pipe such that it blocks waiting for the OS pipe buffer to
627 accept more data. Use :meth:`communicate` to avoid that.
Georg Brandl734e2682008-08-12 08:18:18 +0000628
Reid Kleckner28f13032011-03-14 12:36:53 -0400629 .. versionchanged:: 3.3
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400630 *timeout* was added.
Georg Brandl116aa622007-08-15 14:28:22 +0000631
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400632
633.. method:: Popen.communicate(input=None, timeout=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000634
635 Interact with process: Send data to stdin. Read data from stdout and stderr,
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400636 until end-of-file is reached. Wait for process to terminate. The optional
Gregory P. Smitha454ef62011-05-22 22:29:49 -0700637 *input* argument should be data to be sent to the child process, or
638 ``None``, if no data should be sent to the child. The type of *input*
639 must be bytes or, if *universal_newlines* was ``True``, a string.
Georg Brandl116aa622007-08-15 14:28:22 +0000640
Georg Brandlaf265f42008-12-07 15:06:20 +0000641 :meth:`communicate` returns a tuple ``(stdoutdata, stderrdata)``.
Georg Brandl116aa622007-08-15 14:28:22 +0000642
Guido van Rossum0d3fb8a2007-11-26 23:23:18 +0000643 Note that if you want to send data to the process's stdin, you need to create
644 the Popen object with ``stdin=PIPE``. Similarly, to get anything other than
645 ``None`` in the result tuple, you need to give ``stdout=PIPE`` and/or
646 ``stderr=PIPE`` too.
647
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400648 If the process does not terminate after *timeout* seconds, a
649 :exc:`TimeoutExpired` exception will be raised. Catching this exception and
650 retrying communication will not lose any output.
651
652 The child process is not killed if the timeout expires, so in order to
653 cleanup properly a well-behaved application should kill the child process and
654 finish communication::
655
656 proc = subprocess.Popen(...)
657 try:
658 outs, errs = proc.communicate(timeout=15)
659 except TimeoutExpired:
660 proc.kill()
661 outs, errs = proc.communicate()
662
Christian Heimes7f044312008-01-06 17:05:40 +0000663 .. note::
Georg Brandl116aa622007-08-15 14:28:22 +0000664
Christian Heimes7f044312008-01-06 17:05:40 +0000665 The data read is buffered in memory, so do not use this method if the data
666 size is large or unlimited.
667
Reid Kleckner28f13032011-03-14 12:36:53 -0400668 .. versionchanged:: 3.3
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400669 *timeout* was added.
670
Georg Brandl116aa622007-08-15 14:28:22 +0000671
Christian Heimesa342c012008-04-20 21:01:16 +0000672.. method:: Popen.send_signal(signal)
673
674 Sends the signal *signal* to the child.
675
676 .. note::
677
Brian Curtineb24d742010-04-12 17:16:38 +0000678 On Windows, SIGTERM is an alias for :meth:`terminate`. CTRL_C_EVENT and
Senthil Kumaran916bd382010-10-15 12:55:19 +0000679 CTRL_BREAK_EVENT can be sent to processes started with a *creationflags*
Brian Curtineb24d742010-04-12 17:16:38 +0000680 parameter which includes `CREATE_NEW_PROCESS_GROUP`.
Christian Heimesa342c012008-04-20 21:01:16 +0000681
Christian Heimesa342c012008-04-20 21:01:16 +0000682
683.. method:: Popen.terminate()
684
685 Stop the child. On Posix OSs the method sends SIGTERM to the
Georg Brandl60203b42010-10-06 10:11:56 +0000686 child. On Windows the Win32 API function :c:func:`TerminateProcess` is called
Christian Heimesa342c012008-04-20 21:01:16 +0000687 to stop the child.
688
Christian Heimesa342c012008-04-20 21:01:16 +0000689
690.. method:: Popen.kill()
691
692 Kills the child. On Posix OSs the function sends SIGKILL to the child.
693 On Windows :meth:`kill` is an alias for :meth:`terminate`.
694
Christian Heimesa342c012008-04-20 21:01:16 +0000695
Georg Brandl116aa622007-08-15 14:28:22 +0000696The following attributes are also available:
697
Georg Brandl734e2682008-08-12 08:18:18 +0000698.. warning::
699
Ezio Melottiaa935df2012-08-27 10:00:05 +0300700 Use :meth:`~Popen.communicate` rather than :attr:`.stdin.write <Popen.stdin>`,
701 :attr:`.stdout.read <Popen.stdout>` or :attr:`.stderr.read <Popen.stderr>` to avoid
Georg Brandle720c0a2009-04-27 16:20:50 +0000702 deadlocks due to any of the other OS pipe buffers filling up and blocking the
703 child process.
Georg Brandl734e2682008-08-12 08:18:18 +0000704
705
Georg Brandl116aa622007-08-15 14:28:22 +0000706.. attribute:: Popen.stdin
707
Antoine Pitrou11cb9612010-09-15 11:11:28 +0000708 If the *stdin* argument was :data:`PIPE`, this attribute is a :term:`file
709 object` that provides input to the child process. Otherwise, it is ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000710
711
712.. attribute:: Popen.stdout
713
Antoine Pitrou11cb9612010-09-15 11:11:28 +0000714 If the *stdout* argument was :data:`PIPE`, this attribute is a :term:`file
715 object` that provides output from the child process. Otherwise, it is ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000716
717
718.. attribute:: Popen.stderr
719
Antoine Pitrou11cb9612010-09-15 11:11:28 +0000720 If the *stderr* argument was :data:`PIPE`, this attribute is a :term:`file
721 object` that provides error output from the child process. Otherwise, it is
Georg Brandlaf265f42008-12-07 15:06:20 +0000722 ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000723
724
725.. attribute:: Popen.pid
726
727 The process ID of the child process.
728
Georg Brandl58bfdca2010-03-21 09:50:49 +0000729 Note that if you set the *shell* argument to ``True``, this is the process ID
730 of the spawned shell.
731
Georg Brandl116aa622007-08-15 14:28:22 +0000732
733.. attribute:: Popen.returncode
734
Christian Heimes7f044312008-01-06 17:05:40 +0000735 The child return code, set by :meth:`poll` and :meth:`wait` (and indirectly
736 by :meth:`communicate`). A ``None`` value indicates that the process
737 hasn't terminated yet.
Georg Brandl48310cd2009-01-03 21:18:54 +0000738
Christian Heimes7f044312008-01-06 17:05:40 +0000739 A negative value ``-N`` indicates that the child was terminated by signal
740 ``N`` (Unix only).
Georg Brandl116aa622007-08-15 14:28:22 +0000741
742
Brian Curtine6242d72011-04-29 22:17:51 -0500743Windows Popen Helpers
744---------------------
745
746The :class:`STARTUPINFO` class and following constants are only available
747on Windows.
748
749.. class:: STARTUPINFO()
Brian Curtin73365dd2011-04-29 22:18:33 -0500750
Brian Curtine6242d72011-04-29 22:17:51 -0500751 Partial support of the Windows
752 `STARTUPINFO <http://msdn.microsoft.com/en-us/library/ms686331(v=vs.85).aspx>`__
753 structure is used for :class:`Popen` creation.
754
755 .. attribute:: dwFlags
756
Senthil Kumarana6bac952011-07-04 11:28:30 -0700757 A bit field that determines whether certain :class:`STARTUPINFO`
758 attributes are used when the process creates a window. ::
Brian Curtine6242d72011-04-29 22:17:51 -0500759
760 si = subprocess.STARTUPINFO()
761 si.dwFlags = subprocess.STARTF_USESTDHANDLES | subprocess.STARTF_USESHOWWINDOW
762
763 .. attribute:: hStdInput
764
Senthil Kumarana6bac952011-07-04 11:28:30 -0700765 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
766 is the standard input handle for the process. If
767 :data:`STARTF_USESTDHANDLES` is not specified, the default for standard
768 input is the keyboard buffer.
Brian Curtine6242d72011-04-29 22:17:51 -0500769
770 .. attribute:: hStdOutput
771
Senthil Kumarana6bac952011-07-04 11:28:30 -0700772 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
773 is the standard output handle for the process. Otherwise, this attribute
774 is ignored and the default for standard output is the console window's
Brian Curtine6242d72011-04-29 22:17:51 -0500775 buffer.
776
777 .. attribute:: hStdError
778
Senthil Kumarana6bac952011-07-04 11:28:30 -0700779 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
780 is the standard error handle for the process. Otherwise, this attribute is
Brian Curtine6242d72011-04-29 22:17:51 -0500781 ignored and the default for standard error is the console window's buffer.
782
783 .. attribute:: wShowWindow
784
Senthil Kumarana6bac952011-07-04 11:28:30 -0700785 If :attr:`dwFlags` specifies :data:`STARTF_USESHOWWINDOW`, this attribute
Brian Curtine6242d72011-04-29 22:17:51 -0500786 can be any of the values that can be specified in the ``nCmdShow``
787 parameter for the
788 `ShowWindow <http://msdn.microsoft.com/en-us/library/ms633548(v=vs.85).aspx>`__
Senthil Kumarana6bac952011-07-04 11:28:30 -0700789 function, except for ``SW_SHOWDEFAULT``. Otherwise, this attribute is
Brian Curtine6242d72011-04-29 22:17:51 -0500790 ignored.
Brian Curtin73365dd2011-04-29 22:18:33 -0500791
Brian Curtine6242d72011-04-29 22:17:51 -0500792 :data:`SW_HIDE` is provided for this attribute. It is used when
793 :class:`Popen` is called with ``shell=True``.
794
795
796Constants
797^^^^^^^^^
798
799The :mod:`subprocess` module exposes the following constants.
800
801.. data:: STD_INPUT_HANDLE
802
803 The standard input device. Initially, this is the console input buffer,
804 ``CONIN$``.
805
806.. data:: STD_OUTPUT_HANDLE
807
808 The standard output device. Initially, this is the active console screen
809 buffer, ``CONOUT$``.
810
811.. data:: STD_ERROR_HANDLE
812
813 The standard error device. Initially, this is the active console screen
814 buffer, ``CONOUT$``.
815
816.. data:: SW_HIDE
817
818 Hides the window. Another window will be activated.
819
820.. data:: STARTF_USESTDHANDLES
821
822 Specifies that the :attr:`STARTUPINFO.hStdInput`,
Senthil Kumarana6bac952011-07-04 11:28:30 -0700823 :attr:`STARTUPINFO.hStdOutput`, and :attr:`STARTUPINFO.hStdError` attributes
Brian Curtine6242d72011-04-29 22:17:51 -0500824 contain additional information.
825
826.. data:: STARTF_USESHOWWINDOW
827
Senthil Kumarana6bac952011-07-04 11:28:30 -0700828 Specifies that the :attr:`STARTUPINFO.wShowWindow` attribute contains
Brian Curtine6242d72011-04-29 22:17:51 -0500829 additional information.
830
831.. data:: CREATE_NEW_CONSOLE
832
833 The new process has a new console, instead of inheriting its parent's
834 console (the default).
Brian Curtin73365dd2011-04-29 22:18:33 -0500835
Brian Curtine6242d72011-04-29 22:17:51 -0500836 This flag is always set when :class:`Popen` is created with ``shell=True``.
837
Brian Curtin30401932011-04-29 22:20:57 -0500838.. data:: CREATE_NEW_PROCESS_GROUP
839
840 A :class:`Popen` ``creationflags`` parameter to specify that a new process
841 group will be created. This flag is necessary for using :func:`os.kill`
842 on the subprocess.
843
844 This flag is ignored if :data:`CREATE_NEW_CONSOLE` is specified.
845
Brian Curtine6242d72011-04-29 22:17:51 -0500846
Benjamin Petersondcf97b92008-07-02 17:30:14 +0000847.. _subprocess-replacements:
848
Ezio Melotti402f75d2012-11-08 10:07:10 +0200849Replacing Older Functions with the :mod:`subprocess` Module
850-----------------------------------------------------------
Georg Brandl116aa622007-08-15 14:28:22 +0000851
Nick Coghlanc29248f2011-11-08 20:49:23 +1000852In this section, "a becomes b" means that b can be used as a replacement for a.
Georg Brandl116aa622007-08-15 14:28:22 +0000853
854.. note::
855
Nick Coghlanc29248f2011-11-08 20:49:23 +1000856 All "a" functions in this section fail (more or less) silently if the
857 executed program cannot be found; the "b" replacements raise :exc:`OSError`
858 instead.
Georg Brandl116aa622007-08-15 14:28:22 +0000859
Nick Coghlanc29248f2011-11-08 20:49:23 +1000860 In addition, the replacements using :func:`check_output` will fail with a
861 :exc:`CalledProcessError` if the requested operation produces a non-zero
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +0300862 return code. The output is still available as the
863 :attr:`~CalledProcessError.output` attribute of the raised exception.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000864
865In the following examples, we assume that the relevant functions have already
Ezio Melotti402f75d2012-11-08 10:07:10 +0200866been imported from the :mod:`subprocess` module.
Georg Brandl116aa622007-08-15 14:28:22 +0000867
868
869Replacing /bin/sh shell backquote
870^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
871
872::
873
874 output=`mycmd myarg`
Nick Coghlanc29248f2011-11-08 20:49:23 +1000875 # becomes
876 output = check_output(["mycmd", "myarg"])
Georg Brandl116aa622007-08-15 14:28:22 +0000877
878
Benjamin Petersonf10a79a2008-10-11 00:49:57 +0000879Replacing shell pipeline
880^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000881
882::
883
884 output=`dmesg | grep hda`
Nick Coghlanc29248f2011-11-08 20:49:23 +1000885 # becomes
Georg Brandl116aa622007-08-15 14:28:22 +0000886 p1 = Popen(["dmesg"], stdout=PIPE)
887 p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
Gregory P. Smithe09d2f12011-02-05 21:47:25 +0000888 p1.stdout.close() # Allow p1 to receive a SIGPIPE if p2 exits.
Georg Brandl116aa622007-08-15 14:28:22 +0000889 output = p2.communicate()[0]
890
Gregory P. Smithe09d2f12011-02-05 21:47:25 +0000891The p1.stdout.close() call after starting the p2 is important in order for p1
892to receive a SIGPIPE if p2 exits before p1.
Georg Brandl116aa622007-08-15 14:28:22 +0000893
Nick Coghlanc29248f2011-11-08 20:49:23 +1000894Alternatively, for trusted input, the shell's own pipeline support may still
R David Murray28b8b942012-04-03 08:46:48 -0400895be used directly::
Nick Coghlanc29248f2011-11-08 20:49:23 +1000896
897 output=`dmesg | grep hda`
898 # becomes
899 output=check_output("dmesg | grep hda", shell=True)
900
901
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000902Replacing :func:`os.system`
903^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000904
905::
906
907 sts = os.system("mycmd" + " myarg")
Nick Coghlanc29248f2011-11-08 20:49:23 +1000908 # becomes
909 sts = call("mycmd" + " myarg", shell=True)
Georg Brandl116aa622007-08-15 14:28:22 +0000910
911Notes:
912
913* Calling the program through the shell is usually not required.
914
Georg Brandl116aa622007-08-15 14:28:22 +0000915A more realistic example would look like this::
916
917 try:
918 retcode = call("mycmd" + " myarg", shell=True)
919 if retcode < 0:
Collin Winterc79461b2007-09-01 23:34:30 +0000920 print("Child was terminated by signal", -retcode, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +0000921 else:
Collin Winterc79461b2007-09-01 23:34:30 +0000922 print("Child returned", retcode, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +0000923 except OSError as e:
Collin Winterc79461b2007-09-01 23:34:30 +0000924 print("Execution failed:", e, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +0000925
926
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000927Replacing the :func:`os.spawn <os.spawnl>` family
928^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000929
930P_NOWAIT example::
931
932 pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg")
933 ==>
934 pid = Popen(["/bin/mycmd", "myarg"]).pid
935
936P_WAIT example::
937
938 retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg")
939 ==>
940 retcode = call(["/bin/mycmd", "myarg"])
941
942Vector example::
943
944 os.spawnvp(os.P_NOWAIT, path, args)
945 ==>
946 Popen([path] + args[1:])
947
948Environment example::
949
950 os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env)
951 ==>
952 Popen(["/bin/mycmd", "myarg"], env={"PATH": "/usr/bin"})
953
954
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000955
956Replacing :func:`os.popen`, :func:`os.popen2`, :func:`os.popen3`
957^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000958
959::
960
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000961 (child_stdin, child_stdout) = os.popen2(cmd, mode, bufsize)
Georg Brandl116aa622007-08-15 14:28:22 +0000962 ==>
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000963 p = Popen(cmd, shell=True, bufsize=bufsize,
964 stdin=PIPE, stdout=PIPE, close_fds=True)
965 (child_stdin, child_stdout) = (p.stdin, p.stdout)
Georg Brandl116aa622007-08-15 14:28:22 +0000966
967::
968
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000969 (child_stdin,
970 child_stdout,
971 child_stderr) = os.popen3(cmd, mode, bufsize)
Georg Brandl116aa622007-08-15 14:28:22 +0000972 ==>
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000973 p = Popen(cmd, shell=True, bufsize=bufsize,
974 stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True)
975 (child_stdin,
976 child_stdout,
977 child_stderr) = (p.stdin, p.stdout, p.stderr)
978
979::
980
981 (child_stdin, child_stdout_and_stderr) = os.popen4(cmd, mode, bufsize)
982 ==>
983 p = Popen(cmd, shell=True, bufsize=bufsize,
984 stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True)
985 (child_stdin, child_stdout_and_stderr) = (p.stdin, p.stdout)
986
987Return code handling translates as follows::
988
989 pipe = os.popen(cmd, 'w')
990 ...
991 rc = pipe.close()
Stefan Krahfc9e08d2010-07-14 10:16:11 +0000992 if rc is not None and rc >> 8:
Ezio Melotti985e24d2009-09-13 07:54:02 +0000993 print("There were some errors")
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000994 ==>
995 process = Popen(cmd, 'w', stdin=PIPE)
996 ...
997 process.stdin.close()
998 if process.wait() != 0:
Ezio Melotti985e24d2009-09-13 07:54:02 +0000999 print("There were some errors")
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001000
1001
1002Replacing functions from the :mod:`popen2` module
1003^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1004
1005.. note::
1006
1007 If the cmd argument to popen2 functions is a string, the command is executed
1008 through /bin/sh. If it is a list, the command is directly executed.
1009
1010::
1011
1012 (child_stdout, child_stdin) = popen2.popen2("somestring", bufsize, mode)
1013 ==>
1014 p = Popen(["somestring"], shell=True, bufsize=bufsize,
1015 stdin=PIPE, stdout=PIPE, close_fds=True)
1016 (child_stdout, child_stdin) = (p.stdout, p.stdin)
1017
1018::
1019
1020 (child_stdout, child_stdin) = popen2.popen2(["mycmd", "myarg"], bufsize, mode)
1021 ==>
1022 p = Popen(["mycmd", "myarg"], bufsize=bufsize,
1023 stdin=PIPE, stdout=PIPE, close_fds=True)
1024 (child_stdout, child_stdin) = (p.stdout, p.stdin)
1025
1026:class:`popen2.Popen3` and :class:`popen2.Popen4` basically work as
1027:class:`subprocess.Popen`, except that:
1028
1029* :class:`Popen` raises an exception if the execution fails.
1030
1031* the *capturestderr* argument is replaced with the *stderr* argument.
1032
1033* ``stdin=PIPE`` and ``stdout=PIPE`` must be specified.
1034
1035* popen2 closes all file descriptors by default, but you have to specify
Gregory P. Smithf5604852010-12-13 06:45:02 +00001036 ``close_fds=True`` with :class:`Popen` to guarantee this behavior on
1037 all platforms or past Python versions.
Eli Bendersky046a7642011-04-15 07:23:26 +03001038
Nick Coghlanc29248f2011-11-08 20:49:23 +10001039
Nick Coghlanc29248f2011-11-08 20:49:23 +10001040Legacy Shell Invocation Functions
Nick Coghlan32e4a582011-11-08 21:50:58 +10001041---------------------------------
Nick Coghlanc29248f2011-11-08 20:49:23 +10001042
1043This module also provides the following legacy functions from the 2.x
1044``commands`` module. These operations implicitly invoke the system shell and
1045none of the guarantees described above regarding security and exception
1046handling consistency are valid for these functions.
1047
1048.. function:: getstatusoutput(cmd)
1049
1050 Return ``(status, output)`` of executing *cmd* in a shell.
1051
Tim Golden3a2abb52013-11-03 18:24:50 +00001052 Execute the string *cmd* in a shell with :class:`Popen` and return a 2-tuple
1053 ``(status, output)`` via :func:`Popen.communicate`. Universal newlines mode
1054 is used; see the notes on :ref:`frequently-used-arguments` for more details.
1055
1056 A trailing newline is stripped from the output.
1057 The exit status for the command can be interpreted
Nick Coghlanc29248f2011-11-08 20:49:23 +10001058 according to the rules for the C function :c:func:`wait`. Example::
1059
1060 >>> subprocess.getstatusoutput('ls /bin/ls')
1061 (0, '/bin/ls')
1062 >>> subprocess.getstatusoutput('cat /bin/junk')
1063 (256, 'cat: /bin/junk: No such file or directory')
1064 >>> subprocess.getstatusoutput('/bin/junk')
1065 (256, 'sh: /bin/junk: not found')
1066
Tim Golden3a2abb52013-11-03 18:24:50 +00001067 .. versionchanged:: 3.3
1068 Availability: Unix & Windows
Nick Coghlanc29248f2011-11-08 20:49:23 +10001069
1070
1071.. function:: getoutput(cmd)
1072
1073 Return output (stdout and stderr) of executing *cmd* in a shell.
1074
1075 Like :func:`getstatusoutput`, except the exit status is ignored and the return
1076 value is a string containing the command's output. Example::
1077
1078 >>> subprocess.getoutput('ls /bin/ls')
1079 '/bin/ls'
1080
Tim Golden3a2abb52013-11-03 18:24:50 +00001081 .. versionchanged:: 3.3
1082 Availability: Unix & Windows
Nick Coghlanc29248f2011-11-08 20:49:23 +10001083
Nick Coghlan32e4a582011-11-08 21:50:58 +10001084
Eli Bendersky046a7642011-04-15 07:23:26 +03001085Notes
1086-----
1087
1088.. _converting-argument-sequence:
1089
1090Converting an argument sequence to a string on Windows
1091^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1092
1093On Windows, an *args* sequence is converted to a string that can be parsed
1094using the following rules (which correspond to the rules used by the MS C
1095runtime):
1096
10971. Arguments are delimited by white space, which is either a
1098 space or a tab.
1099
11002. A string surrounded by double quotation marks is
1101 interpreted as a single argument, regardless of white space
1102 contained within. A quoted string can be embedded in an
1103 argument.
1104
11053. A double quotation mark preceded by a backslash is
1106 interpreted as a literal double quotation mark.
1107
11084. Backslashes are interpreted literally, unless they
1109 immediately precede a double quotation mark.
1110
11115. If backslashes immediately precede a double quotation mark,
1112 every pair of backslashes is interpreted as a literal
1113 backslash. If the number of backslashes is odd, the last
1114 backslash escapes the next double quotation mark as
1115 described in rule 3.
1116
Eli Benderskyd2112312011-04-15 07:26:28 +03001117
Éric Araujo9bce3112011-07-27 18:29:31 +02001118.. seealso::
1119
1120 :mod:`shlex`
1121 Module which provides function to parse and escape command lines.