blob: d76e29ff7b5e397ac03137732d9c285f6cc53b50 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`subprocess` --- Subprocess management
2===========================================
3
4.. module:: subprocess
5 :synopsis: Subprocess management.
6.. moduleauthor:: Peter Åstrand <astrand@lysator.liu.se>
7.. sectionauthor:: Peter Åstrand <astrand@lysator.liu.se>
8
9
Georg Brandl116aa622007-08-15 14:28:22 +000010The :mod:`subprocess` module allows you to spawn new processes, connect to their
11input/output/error pipes, and obtain their return codes. This module intends to
Benjamin Peterson5eea8a72014-03-12 21:41:35 -050012replace several older modules and functions::
Georg Brandl116aa622007-08-15 14:28:22 +000013
14 os.system
15 os.spawn*
Georg Brandl116aa622007-08-15 14:28:22 +000016
17Information about how the :mod:`subprocess` module can be used to replace these
18modules and functions can be found in the following sections.
19
Benjamin Peterson41181742008-07-02 20:22:54 +000020.. seealso::
21
22 :pep:`324` -- PEP proposing the subprocess module
23
Georg Brandl116aa622007-08-15 14:28:22 +000024
Ezio Melotti402f75d2012-11-08 10:07:10 +020025Using the :mod:`subprocess` Module
26----------------------------------
Georg Brandl116aa622007-08-15 14:28:22 +000027
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
Nick Coghlanc29248f2011-11-08 20:49:23 +100057 .. note::
58
Gregory P. Smith6436cba2014-05-11 13:26:21 -070059 Do not use ``stdout=PIPE`` or ``stderr=PIPE`` with this
60 function. The child process will block if it generates enough
61 output to a pipe to fill up the OS pipe buffer as the pipes are
62 not being read from.
Nick Coghlanc29248f2011-11-08 20:49:23 +100063
Nick Coghlan217f05b2011-11-08 22:11:21 +100064 .. versionchanged:: 3.3
65 *timeout* was added.
Nick Coghlanc29248f2011-11-08 20:49:23 +100066
Nick Coghlan217f05b2011-11-08 22:11:21 +100067
68.. function:: check_call(args, *, stdin=None, stdout=None, stderr=None, shell=False, timeout=None)
Nick Coghlanc29248f2011-11-08 20:49:23 +100069
70 Run command with arguments. Wait for command to complete. If the return
71 code was zero then return, otherwise raise :exc:`CalledProcessError`. The
72 :exc:`CalledProcessError` object will have the return code in the
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +030073 :attr:`~CalledProcessError.returncode` attribute.
Nick Coghlanc29248f2011-11-08 20:49:23 +100074
75 The arguments shown above are merely the most common ones, described below
Nick Coghlan217f05b2011-11-08 22:11:21 +100076 in :ref:`frequently-used-arguments` (hence the use of keyword-only notation
77 in the abbreviated signature). The full function signature is largely the
78 same as that of the :class:`Popen` constructor - this function passes all
79 supplied arguments other than *timeout* directly through to that interface.
80
81 The *timeout* argument is passed to :meth:`Popen.wait`. If the timeout
82 expires, the child process will be killed and then waited for again. The
83 :exc:`TimeoutExpired` exception will be re-raised after the child process
84 has terminated.
Nick Coghlanc29248f2011-11-08 20:49:23 +100085
86 Examples::
87
88 >>> subprocess.check_call(["ls", "-l"])
89 0
90
91 >>> subprocess.check_call("exit 1", shell=True)
92 Traceback (most recent call last):
93 ...
94 subprocess.CalledProcessError: Command 'exit 1' returned non-zero exit status 1
95
Nick Coghlanc29248f2011-11-08 20:49:23 +100096 .. note::
97
Gregory P. Smith6436cba2014-05-11 13:26:21 -070098 Do not use ``stdout=PIPE`` or ``stderr=PIPE`` with this
99 function. The child process will block if it generates enough
100 output to a pipe to fill up the OS pipe buffer as the pipes are
101 not being read from.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000102
Nick Coghlan217f05b2011-11-08 22:11:21 +1000103 .. versionchanged:: 3.3
104 *timeout* was added.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000105
Nick Coghlan217f05b2011-11-08 22:11:21 +1000106
Serhiy Storchakafcd9f222013-04-22 20:20:54 +0300107.. function:: check_output(args, *, input=None, stdin=None, stderr=None, shell=False, universal_newlines=False, timeout=None)
Nick Coghlanc29248f2011-11-08 20:49:23 +1000108
Gregory P. Smithf16455a2013-03-19 23:36:31 -0700109 Run command with arguments and return its output.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000110
111 If the return code was non-zero it raises a :exc:`CalledProcessError`. The
112 :exc:`CalledProcessError` object will have the return code in the
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +0300113 :attr:`~CalledProcessError.returncode` attribute and any output in the
114 :attr:`~CalledProcessError.output` attribute.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000115
116 The arguments shown above are merely the most common ones, described below
Nick Coghlan217f05b2011-11-08 22:11:21 +1000117 in :ref:`frequently-used-arguments` (hence the use of keyword-only notation
118 in the abbreviated signature). The full function signature is largely the
119 same as that of the :class:`Popen` constructor - this functions passes all
Serhiy Storchakafcd9f222013-04-22 20:20:54 +0300120 supplied arguments other than *input* and *timeout* directly through to
121 that interface. In addition, *stdout* is not permitted as an argument, as
122 it is used internally to collect the output from the subprocess.
Nick Coghlan217f05b2011-11-08 22:11:21 +1000123
124 The *timeout* argument is passed to :meth:`Popen.wait`. If the timeout
125 expires, the child process will be killed and then waited for again. The
126 :exc:`TimeoutExpired` exception will be re-raised after the child process
127 has terminated.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000128
Serhiy Storchakafcd9f222013-04-22 20:20:54 +0300129 The *input* argument is passed to :meth:`Popen.communicate` and thus to the
130 subprocess's stdin. If used it must be a byte sequence, or a string if
131 ``universal_newlines=True``. When used, the internal :class:`Popen` object
132 is automatically created with ``stdin=PIPE``, and the *stdin* argument may
133 not be used as well.
134
Nick Coghlanc29248f2011-11-08 20:49:23 +1000135 Examples::
136
137 >>> subprocess.check_output(["echo", "Hello World!"])
138 b'Hello World!\n'
139
140 >>> subprocess.check_output(["echo", "Hello World!"], universal_newlines=True)
141 'Hello World!\n'
142
Serhiy Storchakafcd9f222013-04-22 20:20:54 +0300143 >>> subprocess.check_output(["sed", "-e", "s/foo/bar/"],
144 ... input=b"when in the course of fooman events\n")
145 b'when in the course of barman events\n'
146
Nick Coghlanc29248f2011-11-08 20:49:23 +1000147 >>> subprocess.check_output("exit 1", shell=True)
148 Traceback (most recent call last):
149 ...
150 subprocess.CalledProcessError: Command 'exit 1' returned non-zero exit status 1
151
152 By default, this function will return the data as encoded bytes. The actual
153 encoding of the output data may depend on the command being invoked, so the
154 decoding to text will often need to be handled at the application level.
155
156 This behaviour may be overridden by setting *universal_newlines* to
Andrew Svetlov50be4522012-08-13 22:09:04 +0300157 ``True`` as described below in :ref:`frequently-used-arguments`.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000158
159 To also capture standard error in the result, use
160 ``stderr=subprocess.STDOUT``::
161
162 >>> subprocess.check_output(
163 ... "ls non_existent_file; exit 0",
164 ... stderr=subprocess.STDOUT,
165 ... shell=True)
166 'ls: non_existent_file: No such file or directory\n'
167
Nick Coghlanc29248f2011-11-08 20:49:23 +1000168 .. note::
169
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700170 Do not use ``stdout=PIPE`` or ``stderr=PIPE`` with this
171 function. The child process will block if it generates enough
172 output to a pipe to fill up the OS pipe buffer as the pipes are
173 not being read from.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000174
Serhiy Storchakafcd9f222013-04-22 20:20:54 +0300175 .. versionadded:: 3.1
176
Nick Coghlan217f05b2011-11-08 22:11:21 +1000177 .. versionchanged:: 3.3
178 *timeout* was added.
179
Serhiy Storchakafcd9f222013-04-22 20:20:54 +0300180 .. versionchanged:: 3.4
181 *input* was added.
Nick Coghlan217f05b2011-11-08 22:11:21 +1000182
183.. data:: DEVNULL
184
185 Special value that can be used as the *stdin*, *stdout* or *stderr* argument
186 to :class:`Popen` and indicates that the special file :data:`os.devnull`
187 will be used.
188
189 .. versionadded:: 3.3
190
Nick Coghlanc29248f2011-11-08 20:49:23 +1000191
192.. data:: PIPE
193
194 Special value that can be used as the *stdin*, *stdout* or *stderr* argument
195 to :class:`Popen` and indicates that a pipe to the standard stream should be
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700196 opened. Most useful with :meth:`Popen.communicate`.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000197
198
199.. data:: STDOUT
200
201 Special value that can be used as the *stderr* argument to :class:`Popen` and
202 indicates that standard error should go into the same handle as standard
203 output.
204
205
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300206.. exception:: SubprocessError
207
208 Base class for all other exceptions from this module.
209
210 .. versionadded:: 3.3
211
212
213.. exception:: TimeoutExpired
214
215 Subclass of :exc:`SubprocessError`, raised when a timeout expires
216 while waiting for a child process.
217
218 .. attribute:: cmd
219
220 Command that was used to spawn the child process.
221
222 .. attribute:: timeout
223
224 Timeout in seconds.
225
226 .. attribute:: output
227
228 Output of the child process if this exception is raised by
229 :func:`check_output`. Otherwise, ``None``.
230
231 .. versionadded:: 3.3
232
233
234.. exception:: CalledProcessError
235
236 Subclass of :exc:`SubprocessError`, raised when a process run by
237 :func:`check_call` or :func:`check_output` returns a non-zero exit status.
238
239 .. attribute:: returncode
240
241 Exit status of the child process.
242
243 .. attribute:: cmd
244
245 Command that was used to spawn the child process.
246
247 .. attribute:: output
248
249 Output of the child process if this exception is raised by
250 :func:`check_output`. Otherwise, ``None``.
251
252
253
Nick Coghlanc29248f2011-11-08 20:49:23 +1000254.. _frequently-used-arguments:
255
256Frequently Used Arguments
257^^^^^^^^^^^^^^^^^^^^^^^^^
258
259To support a wide variety of use cases, the :class:`Popen` constructor (and
260the convenience functions) accept a large number of optional arguments. For
261most typical use cases, many of these arguments can be safely left at their
262default values. The arguments that are most commonly needed are:
263
264 *args* is required for all calls and should be a string, or a sequence of
265 program arguments. Providing a sequence of arguments is generally
266 preferred, as it allows the module to take care of any required escaping
267 and quoting of arguments (e.g. to permit spaces in file names). If passing
268 a single string, either *shell* must be :const:`True` (see below) or else
269 the string must simply name the program to be executed without specifying
270 any arguments.
271
272 *stdin*, *stdout* and *stderr* specify the executed program's standard input,
273 standard output and standard error file handles, respectively. Valid values
Nick Coghlan217f05b2011-11-08 22:11:21 +1000274 are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive
275 integer), an existing file object, and ``None``. :data:`PIPE` indicates
276 that a new pipe to the child should be created. :data:`DEVNULL` indicates
277 that the special file :data:`os.devnull` will be used. With the default
278 settings of ``None``, no redirection will occur; the child's file handles
279 will be inherited from the parent. Additionally, *stderr* can be
280 :data:`STDOUT`, which indicates that the stderr data from the child
281 process should be captured into the same file handle as for *stdout*.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000282
R David Murray1b00f252012-08-15 10:43:58 -0400283 .. index::
284 single: universal newlines; subprocess module
285
Ronald Oussoren385521c2013-07-07 09:26:45 +0200286 If *universal_newlines* is ``False`` the file objects *stdin*, *stdout* and
287 *stderr* will be opened as binary streams, and no line ending conversion is
288 done.
289
290 If *universal_newlines* is ``True``, these file objects
291 will be opened as text streams in :term:`universal newlines` mode
R David Murray0689ce42012-08-15 11:13:31 -0400292 using the encoding returned by :func:`locale.getpreferredencoding(False)
Ronald Oussoren385521c2013-07-07 09:26:45 +0200293 <locale.getpreferredencoding>`. For *stdin*, line ending characters
R David Murray0689ce42012-08-15 11:13:31 -0400294 ``'\n'`` in the input will be converted to the default line separator
295 :data:`os.linesep`. For *stdout* and *stderr*, all line endings in the
296 output will be converted to ``'\n'``. For more information see the
297 documentation of the :class:`io.TextIOWrapper` class when the *newline*
298 argument to its constructor is ``None``.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000299
Andrew Svetlov50be4522012-08-13 22:09:04 +0300300 .. note::
301
Gregory P. Smith1f8a40b2013-03-20 18:32:03 -0700302 The newlines attribute of the file objects :attr:`Popen.stdin`,
303 :attr:`Popen.stdout` and :attr:`Popen.stderr` are not updated by
304 the :meth:`Popen.communicate` method.
Andrew Svetlov50be4522012-08-13 22:09:04 +0300305
306 If *shell* is ``True``, the specified command will be executed through
Ezio Melotti186d5232012-09-15 08:34:08 +0300307 the shell. This can be useful if you are using Python primarily for the
Nick Coghlanc29248f2011-11-08 20:49:23 +1000308 enhanced control flow it offers over most system shells and still want
Ezio Melotti186d5232012-09-15 08:34:08 +0300309 convenient access to other shell features such as shell pipes, filename
310 wildcards, environment variable expansion, and expansion of ``~`` to a
311 user's home directory. However, note that Python itself offers
312 implementations of many shell-like features (in particular, :mod:`glob`,
313 :mod:`fnmatch`, :func:`os.walk`, :func:`os.path.expandvars`,
314 :func:`os.path.expanduser`, and :mod:`shutil`).
Nick Coghlanc29248f2011-11-08 20:49:23 +1000315
Andrew Svetlov4805fa82012-08-13 22:11:14 +0300316 .. versionchanged:: 3.3
317 When *universal_newlines* is ``True``, the class uses the encoding
318 :func:`locale.getpreferredencoding(False) <locale.getpreferredencoding>`
319 instead of ``locale.getpreferredencoding()``. See the
320 :class:`io.TextIOWrapper` class for more information on this change.
321
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700322 .. note::
Nick Coghlanc29248f2011-11-08 20:49:23 +1000323
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700324 Read the `Security Considerations`_ section before using ``shell=True``.
Andrew Svetlovc2415eb2012-10-28 11:42:26 +0200325
Nick Coghlanc29248f2011-11-08 20:49:23 +1000326These options, along with all of the other options, are described in more
327detail in the :class:`Popen` constructor documentation.
328
329
Sandro Tosi1526ad12011-12-25 11:27:37 +0100330Popen Constructor
Sandro Tosi3e6c8142011-12-25 17:14:11 +0100331^^^^^^^^^^^^^^^^^
Nick Coghlanc29248f2011-11-08 20:49:23 +1000332
333The underlying process creation and management in this module is handled by
334the :class:`Popen` class. It offers a lot of flexibility so that developers
335are able to handle the less common cases not covered by the convenience
336functions.
Georg Brandl116aa622007-08-15 14:28:22 +0000337
338
Gregory P. Smitha1ed5392013-03-23 11:44:25 -0700339.. class:: Popen(args, bufsize=-1, executable=None, stdin=None, stdout=None, \
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700340 stderr=None, preexec_fn=None, close_fds=True, shell=False, \
341 cwd=None, env=None, universal_newlines=False, \
342 startupinfo=None, creationflags=0, restore_signals=True, \
343 start_new_session=False, pass_fds=())
Georg Brandl116aa622007-08-15 14:28:22 +0000344
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700345 Execute a child program in a new process. On POSIX, the class uses
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700346 :meth:`os.execvp`-like behavior to execute the child program. On Windows,
347 the class uses the Windows ``CreateProcess()`` function. The arguments to
348 :class:`Popen` are as follows.
Georg Brandl116aa622007-08-15 14:28:22 +0000349
Chris Jerdonek470ee392012-10-08 23:06:57 -0700350 *args* should be a sequence of program arguments or else a single string.
351 By default, the program to execute is the first item in *args* if *args* is
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700352 a sequence. If *args* is a string, the interpretation is
353 platform-dependent and described below. See the *shell* and *executable*
354 arguments for additional differences from the default behavior. Unless
355 otherwise stated, it is recommended to pass *args* as a sequence.
Georg Brandl116aa622007-08-15 14:28:22 +0000356
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700357 On POSIX, if *args* is a string, the string is interpreted as the name or
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700358 path of the program to execute. However, this can only be done if not
359 passing arguments to the program.
Georg Brandl116aa622007-08-15 14:28:22 +0000360
R. David Murray5973e4d2010-02-04 16:41:57 +0000361 .. note::
362
363 :meth:`shlex.split` can be useful when determining the correct
364 tokenization for *args*, especially in complex cases::
365
366 >>> import shlex, subprocess
R. David Murray73bc75b2010-02-05 16:25:12 +0000367 >>> command_line = input()
R. David Murray5973e4d2010-02-04 16:41:57 +0000368 /bin/vikings -input eggs.txt -output "spam spam.txt" -cmd "echo '$MONEY'"
369 >>> args = shlex.split(command_line)
370 >>> print(args)
371 ['/bin/vikings', '-input', 'eggs.txt', '-output', 'spam spam.txt', '-cmd', "echo '$MONEY'"]
372 >>> p = subprocess.Popen(args) # Success!
373
374 Note in particular that options (such as *-input*) and arguments (such
375 as *eggs.txt*) that are separated by whitespace in the shell go in separate
376 list elements, while arguments that need quoting or backslash escaping when
377 used in the shell (such as filenames containing spaces or the *echo* command
378 shown above) are single list elements.
379
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700380 On Windows, if *args* is a sequence, it will be converted to a string in a
381 manner described in :ref:`converting-argument-sequence`. This is because
382 the underlying ``CreateProcess()`` operates on strings.
Chris Jerdonek470ee392012-10-08 23:06:57 -0700383
384 The *shell* argument (which defaults to *False*) specifies whether to use
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700385 the shell as the program to execute. If *shell* is *True*, it is
386 recommended to pass *args* as a string rather than as a sequence.
Chris Jerdonek470ee392012-10-08 23:06:57 -0700387
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700388 On POSIX with ``shell=True``, the shell defaults to :file:`/bin/sh`. If
Chris Jerdonek470ee392012-10-08 23:06:57 -0700389 *args* is a string, the string specifies the command
390 to execute through the shell. This means that the string must be
R. David Murray5973e4d2010-02-04 16:41:57 +0000391 formatted exactly as it would be when typed at the shell prompt. This
392 includes, for example, quoting or backslash escaping filenames with spaces in
393 them. If *args* is a sequence, the first item specifies the command string, and
394 any additional items will be treated as additional arguments to the shell
Chris Jerdonek470ee392012-10-08 23:06:57 -0700395 itself. That is to say, :class:`Popen` does the equivalent of::
R. David Murray5973e4d2010-02-04 16:41:57 +0000396
397 Popen(['/bin/sh', '-c', args[0], args[1], ...])
Georg Brandl116aa622007-08-15 14:28:22 +0000398
Chris Jerdonek470ee392012-10-08 23:06:57 -0700399 On Windows with ``shell=True``, the :envvar:`COMSPEC` environment variable
400 specifies the default shell. The only time you need to specify
401 ``shell=True`` on Windows is when the command you wish to execute is built
402 into the shell (e.g. :command:`dir` or :command:`copy`). You do not need
403 ``shell=True`` to run a batch file or console-based executable.
Georg Brandl116aa622007-08-15 14:28:22 +0000404
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700405 .. note::
Chris Jerdonekcc32a682012-10-10 22:52:22 -0700406
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700407 Read the `Security Considerations`_ section before using ``shell=True``.
Chris Jerdonekcc32a682012-10-10 22:52:22 -0700408
Benjamin Petersoneacec1c2014-01-18 00:47:00 -0500409 *bufsize* will be supplied as the corresponding argument to the :func:`open`
410 function when creating the stdin/stdout/stderr pipe file objects: :const:`0`
411 means unbuffered (read and write are one system call and can return short),
412 :const:`1` means line buffered, any other positive value means use a buffer
413 of approximately that size. A negative bufsize (the default) means the
414 system default of io.DEFAULT_BUFFER_SIZE will be used.
Georg Brandl116aa622007-08-15 14:28:22 +0000415
Georg Brandl37b70bb2013-11-25 08:48:37 +0100416 .. versionchanged:: 3.3.1
Gregory P. Smitha1ed5392013-03-23 11:44:25 -0700417 *bufsize* now defaults to -1 to enable buffering by default to match the
Georg Brandl37b70bb2013-11-25 08:48:37 +0100418 behavior that most code expects. In versions prior to Python 3.2.4 and
419 3.3.1 it incorrectly defaulted to :const:`0` which was unbuffered
420 and allowed short reads. This was unintentional and did not match the
421 behavior of Python 2 as most code expected.
Antoine Pitrou4b876202010-06-02 17:10:49 +0000422
Chris Jerdonek470ee392012-10-08 23:06:57 -0700423 The *executable* argument specifies a replacement program to execute. It
424 is very seldom needed. When ``shell=False``, *executable* replaces the
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700425 program to execute specified by *args*. However, the original *args* is
426 still passed to the program. Most programs treat the program specified
427 by *args* as the command name, which can then be different from the program
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700428 actually executed. On POSIX, the *args* name
Chris Jerdonek470ee392012-10-08 23:06:57 -0700429 becomes the display name for the executable in utilities such as
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700430 :program:`ps`. If ``shell=True``, on POSIX the *executable* argument
Chris Jerdonek470ee392012-10-08 23:06:57 -0700431 specifies a replacement shell for the default :file:`/bin/sh`.
Georg Brandl116aa622007-08-15 14:28:22 +0000432
Nick Coghlanc29248f2011-11-08 20:49:23 +1000433 *stdin*, *stdout* and *stderr* specify the executed program's standard input,
Georg Brandlaf265f42008-12-07 15:06:20 +0000434 standard output and standard error file handles, respectively. Valid values
Ross Lagerwallba102ec2011-03-16 18:40:25 +0200435 are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive
436 integer), an existing :term:`file object`, and ``None``. :data:`PIPE`
437 indicates that a new pipe to the child should be created. :data:`DEVNULL`
Nick Coghlan217f05b2011-11-08 22:11:21 +1000438 indicates that the special file :data:`os.devnull` will be used. With the
439 default settings of ``None``, no redirection will occur; the child's file
440 handles will be inherited from the parent. Additionally, *stderr* can be
441 :data:`STDOUT`, which indicates that the stderr data from the applications
442 should be captured into the same file handle as for stdout.
Georg Brandl116aa622007-08-15 14:28:22 +0000443
444 If *preexec_fn* is set to a callable object, this object will be called in the
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000445 child process just before the child is executed.
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700446 (POSIX only)
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000447
448 .. warning::
449
450 The *preexec_fn* parameter is not safe to use in the presence of threads
451 in your application. The child process could deadlock before exec is
452 called.
453 If you must use it, keep it trivial! Minimize the number of libraries
454 you call into.
455
456 .. note::
457
458 If you need to modify the environment for the child use the *env*
459 parameter rather than doing it in a *preexec_fn*.
460 The *start_new_session* parameter can take the place of a previously
461 common use of *preexec_fn* to call os.setsid() in the child.
Georg Brandl116aa622007-08-15 14:28:22 +0000462
463 If *close_fds* is true, all file descriptors except :const:`0`, :const:`1` and
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700464 :const:`2` will be closed before the child process is executed. (POSIX only).
465 The default varies by platform: Always true on POSIX. On Windows it is
Gregory P. Smith8edd99d2010-12-14 13:43:30 +0000466 true when *stdin*/*stdout*/*stderr* are :const:`None`, false otherwise.
Gregory P. Smithd23047b2010-12-04 09:10:44 +0000467 On Windows, if *close_fds* is true then no handles will be inherited by the
Georg Brandl116aa622007-08-15 14:28:22 +0000468 child process. Note that on Windows, you cannot set *close_fds* to true and
469 also redirect the standard handles by setting *stdin*, *stdout* or *stderr*.
470
Gregory P. Smith8edd99d2010-12-14 13:43:30 +0000471 .. versionchanged:: 3.2
472 The default for *close_fds* was changed from :const:`False` to
473 what is described above.
474
475 *pass_fds* is an optional sequence of file descriptors to keep open
476 between the parent and child. Providing any *pass_fds* forces
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700477 *close_fds* to be :const:`True`. (POSIX only)
Gregory P. Smith8edd99d2010-12-14 13:43:30 +0000478
479 .. versionadded:: 3.2
480 The *pass_fds* parameter was added.
Georg Brandl116aa622007-08-15 14:28:22 +0000481
Chris Jerdonekec3ea942012-09-30 00:10:28 -0700482 If *cwd* is not ``None``, the function changes the working directory to
483 *cwd* before executing the child. In particular, the function looks for
484 *executable* (or for the first item in *args*) relative to *cwd* if the
485 executable path is a relative path.
Georg Brandl116aa622007-08-15 14:28:22 +0000486
Serhiy Storchakafbc1c262013-11-29 12:17:13 +0200487 If *restore_signals* is true (the default) all signals that Python has set to
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000488 SIG_IGN are restored to SIG_DFL in the child process before the exec.
489 Currently this includes the SIGPIPE, SIGXFZ and SIGXFSZ signals.
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700490 (POSIX only)
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000491
492 .. versionchanged:: 3.2
493 *restore_signals* was added.
494
Serhiy Storchakafbc1c262013-11-29 12:17:13 +0200495 If *start_new_session* is true the setsid() system call will be made in the
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700496 child process prior to the execution of the subprocess. (POSIX only)
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000497
498 .. versionchanged:: 3.2
499 *start_new_session* was added.
500
Christian Heimesa342c012008-04-20 21:01:16 +0000501 If *env* is not ``None``, it must be a mapping that defines the environment
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000502 variables for the new process; these are used instead of the default
503 behavior of inheriting the current process' environment.
Georg Brandl116aa622007-08-15 14:28:22 +0000504
R. David Murray1055e892009-04-16 18:15:32 +0000505 .. note::
R. David Murrayf4ac1492009-04-15 22:35:15 +0000506
Georg Brandl2708f3a2009-12-20 14:38:23 +0000507 If specified, *env* must provide any variables required for the program to
508 execute. On Windows, in order to run a `side-by-side assembly`_ the
509 specified *env* **must** include a valid :envvar:`SystemRoot`.
R. David Murrayf4ac1492009-04-15 22:35:15 +0000510
R. David Murray1055e892009-04-16 18:15:32 +0000511 .. _side-by-side assembly: http://en.wikipedia.org/wiki/Side-by-Side_Assembly
512
Andrew Svetlov50be4522012-08-13 22:09:04 +0300513 If *universal_newlines* is ``True``, the file objects *stdin*, *stdout*
R David Murray1b00f252012-08-15 10:43:58 -0400514 and *stderr* are opened as text streams in universal newlines mode, as
Ronald Oussorena6865052013-07-06 10:23:59 +0200515 described above in :ref:`frequently-used-arguments`, otherwise they are
516 opened as binary streams.
Georg Brandl116aa622007-08-15 14:28:22 +0000517
Brian Curtine6242d72011-04-29 22:17:51 -0500518 If given, *startupinfo* will be a :class:`STARTUPINFO` object, which is
519 passed to the underlying ``CreateProcess`` function.
Brian Curtin30401932011-04-29 22:20:57 -0500520 *creationflags*, if given, can be :data:`CREATE_NEW_CONSOLE` or
521 :data:`CREATE_NEW_PROCESS_GROUP`. (Windows only)
Georg Brandl116aa622007-08-15 14:28:22 +0000522
Gregory P. Smith6b657452011-05-11 21:42:08 -0700523 Popen objects are supported as context managers via the :keyword:`with` statement:
524 on exit, standard file descriptors are closed, and the process is waited for.
Brian Curtin79cdb662010-12-03 02:46:02 +0000525 ::
526
527 with Popen(["ifconfig"], stdout=PIPE) as proc:
528 log.write(proc.stdout.read())
529
530 .. versionchanged:: 3.2
531 Added context manager support.
532
Georg Brandl116aa622007-08-15 14:28:22 +0000533
Georg Brandl116aa622007-08-15 14:28:22 +0000534Exceptions
535^^^^^^^^^^
536
537Exceptions raised in the child process, before the new program has started to
538execute, will be re-raised in the parent. Additionally, the exception object
539will have one extra attribute called :attr:`child_traceback`, which is a string
Georg Brandl81675612010-08-26 14:30:56 +0000540containing traceback information from the child's point of view.
Georg Brandl116aa622007-08-15 14:28:22 +0000541
542The most common exception raised is :exc:`OSError`. This occurs, for example,
543when trying to execute a non-existent file. Applications should prepare for
544:exc:`OSError` exceptions.
545
546A :exc:`ValueError` will be raised if :class:`Popen` is called with invalid
547arguments.
548
Nick Coghlanc29248f2011-11-08 20:49:23 +1000549:func:`check_call` and :func:`check_output` will raise
550:exc:`CalledProcessError` if the called process returns a non-zero return
551code.
Georg Brandl116aa622007-08-15 14:28:22 +0000552
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400553All of the functions and methods that accept a *timeout* parameter, such as
554:func:`call` and :meth:`Popen.communicate` will raise :exc:`TimeoutExpired` if
555the timeout expires before the process exits.
556
Ronald Oussorenc1577902011-03-16 10:03:10 -0400557Exceptions defined in this module all inherit from :exc:`SubprocessError`.
Gregory P. Smith54d412e2011-03-14 14:08:43 -0400558
559 .. versionadded:: 3.3
560 The :exc:`SubprocessError` base class was added.
561
Georg Brandl116aa622007-08-15 14:28:22 +0000562
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700563Security Considerations
564-----------------------
Georg Brandl116aa622007-08-15 14:28:22 +0000565
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700566Unlike some other popen functions, this implementation will never
567implicitly call a system shell. This means that all characters,
568including shell metacharacters, can safely be passed to child processes.
569If the shell is invoked explicitly, via ``shell=True``, it is the application's
570responsibility to ensure that all whitespace and metacharacters are
571quoted appropriately to avoid
572`shell injection <http://en.wikipedia.org/wiki/Shell_injection#Shell_injection>`_
573vulnerabilities.
574
575When using ``shell=True``, the :func:`shlex.quote` function can be
576used to properly escape whitespace and shell metacharacters in strings
577that are going to be used to construct shell commands.
Georg Brandl116aa622007-08-15 14:28:22 +0000578
579
580Popen Objects
581-------------
582
583Instances of the :class:`Popen` class have the following methods:
584
585
586.. method:: Popen.poll()
587
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +0300588 Check if child process has terminated. Set and return
589 :attr:`~Popen.returncode` attribute.
Georg Brandl116aa622007-08-15 14:28:22 +0000590
591
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400592.. method:: Popen.wait(timeout=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000593
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +0300594 Wait for child process to terminate. Set and return
595 :attr:`~Popen.returncode` attribute.
Georg Brandl116aa622007-08-15 14:28:22 +0000596
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400597 If the process does not terminate after *timeout* seconds, raise a
598 :exc:`TimeoutExpired` exception. It is safe to catch this exception and
599 retry the wait.
600
Victor Stinner07171242014-02-24 13:18:47 +0100601 .. note::
602
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700603 This will deadlock when using ``stdout=PIPE`` or ``stderr=PIPE``
604 and the child process generates enough output to a pipe such that
605 it blocks waiting for the OS pipe buffer to accept more data.
606 Use :meth:`Popen.communicate` when using pipes to avoid that.
607
608 .. note::
609
Victor Stinner07171242014-02-24 13:18:47 +0100610 The function is implemented using a busy loop (non-blocking call and
611 short sleeps). Use the :mod:`asyncio` module for an asynchronous wait:
612 see :class:`asyncio.create_subprocess_exec`.
613
Reid Kleckner28f13032011-03-14 12:36:53 -0400614 .. versionchanged:: 3.3
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400615 *timeout* was added.
Georg Brandl116aa622007-08-15 14:28:22 +0000616
Gregory P. Smithbbe33352014-02-11 09:21:03 -0800617 .. deprecated:: 3.4
618
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700619 Do not use the *endtime* parameter. It is was unintentionally
620 exposed in 3.3 but was left undocumented as it was intended to be
621 private for internal use. Use *timeout* instead.
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400622
623.. method:: Popen.communicate(input=None, timeout=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000624
625 Interact with process: Send data to stdin. Read data from stdout and stderr,
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400626 until end-of-file is reached. Wait for process to terminate. The optional
Gregory P. Smitha454ef62011-05-22 22:29:49 -0700627 *input* argument should be data to be sent to the child process, or
628 ``None``, if no data should be sent to the child. The type of *input*
629 must be bytes or, if *universal_newlines* was ``True``, a string.
Georg Brandl116aa622007-08-15 14:28:22 +0000630
Georg Brandlaf265f42008-12-07 15:06:20 +0000631 :meth:`communicate` returns a tuple ``(stdoutdata, stderrdata)``.
Andrew Kuchling4f7b0c32014-04-14 15:08:18 -0400632 The data will be bytes or, if *universal_newlines* was ``True``, strings.
Georg Brandl116aa622007-08-15 14:28:22 +0000633
Guido van Rossum0d3fb8a2007-11-26 23:23:18 +0000634 Note that if you want to send data to the process's stdin, you need to create
635 the Popen object with ``stdin=PIPE``. Similarly, to get anything other than
636 ``None`` in the result tuple, you need to give ``stdout=PIPE`` and/or
637 ``stderr=PIPE`` too.
638
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400639 If the process does not terminate after *timeout* seconds, a
640 :exc:`TimeoutExpired` exception will be raised. Catching this exception and
641 retrying communication will not lose any output.
642
643 The child process is not killed if the timeout expires, so in order to
644 cleanup properly a well-behaved application should kill the child process and
645 finish communication::
646
647 proc = subprocess.Popen(...)
648 try:
649 outs, errs = proc.communicate(timeout=15)
650 except TimeoutExpired:
651 proc.kill()
652 outs, errs = proc.communicate()
653
Christian Heimes7f044312008-01-06 17:05:40 +0000654 .. note::
Georg Brandl116aa622007-08-15 14:28:22 +0000655
Christian Heimes7f044312008-01-06 17:05:40 +0000656 The data read is buffered in memory, so do not use this method if the data
657 size is large or unlimited.
658
Reid Kleckner28f13032011-03-14 12:36:53 -0400659 .. versionchanged:: 3.3
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400660 *timeout* was added.
661
Georg Brandl116aa622007-08-15 14:28:22 +0000662
Christian Heimesa342c012008-04-20 21:01:16 +0000663.. method:: Popen.send_signal(signal)
664
665 Sends the signal *signal* to the child.
666
667 .. note::
668
Brian Curtineb24d742010-04-12 17:16:38 +0000669 On Windows, SIGTERM is an alias for :meth:`terminate`. CTRL_C_EVENT and
Senthil Kumaran916bd382010-10-15 12:55:19 +0000670 CTRL_BREAK_EVENT can be sent to processes started with a *creationflags*
Brian Curtineb24d742010-04-12 17:16:38 +0000671 parameter which includes `CREATE_NEW_PROCESS_GROUP`.
Christian Heimesa342c012008-04-20 21:01:16 +0000672
Christian Heimesa342c012008-04-20 21:01:16 +0000673
674.. method:: Popen.terminate()
675
676 Stop the child. On Posix OSs the method sends SIGTERM to the
Georg Brandl60203b42010-10-06 10:11:56 +0000677 child. On Windows the Win32 API function :c:func:`TerminateProcess` is called
Christian Heimesa342c012008-04-20 21:01:16 +0000678 to stop the child.
679
Christian Heimesa342c012008-04-20 21:01:16 +0000680
681.. method:: Popen.kill()
682
683 Kills the child. On Posix OSs the function sends SIGKILL to the child.
684 On Windows :meth:`kill` is an alias for :meth:`terminate`.
685
Christian Heimesa342c012008-04-20 21:01:16 +0000686
Georg Brandl116aa622007-08-15 14:28:22 +0000687The following attributes are also available:
688
Gregory P. Smith024c5ee2014-04-29 11:33:23 -0700689.. attribute:: Popen.args
690
691 The *args* argument as it was passed to :class:`Popen` -- a
692 sequence of program arguments or else a single string.
693
694 .. versionadded:: 3.3
Georg Brandl734e2682008-08-12 08:18:18 +0000695
Georg Brandl116aa622007-08-15 14:28:22 +0000696.. attribute:: Popen.stdin
697
Benjamin Peterson3d8814e2014-01-18 00:45:56 -0500698 If the *stdin* argument was :data:`PIPE`, this attribute is a writeable
699 stream object as returned by :func:`open`. If the *universal_newlines*
700 argument was ``True``, the stream is a text stream, otherwise it is a byte
701 stream. If the *stdin* argument was not :data:`PIPE`, this attribute is
702 ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000703
704
705.. attribute:: Popen.stdout
706
Benjamin Peterson3d8814e2014-01-18 00:45:56 -0500707 If the *stdout* argument was :data:`PIPE`, this attribute is a readable
708 stream object as returned by :func:`open`. Reading from the stream provides
709 output from the child process. If the *universal_newlines* argument was
710 ``True``, the stream is a text stream, otherwise it is a byte stream. If the
711 *stdout* argument was not :data:`PIPE`, this attribute is ``None``.
Benjamin Petersonaf69fe22014-01-18 00:49:04 -0500712
Georg Brandl116aa622007-08-15 14:28:22 +0000713
714.. attribute:: Popen.stderr
715
Benjamin Peterson3d8814e2014-01-18 00:45:56 -0500716 If the *stderr* argument was :data:`PIPE`, this attribute is a readable
717 stream object as returned by :func:`open`. Reading from the stream provides
718 error output from the child process. If the *universal_newlines* argument was
719 ``True``, the stream is a text stream, otherwise it is a byte stream. If the
720 *stderr* argument was not :data:`PIPE`, this attribute is ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000721
Gregory P. Smith6436cba2014-05-11 13:26:21 -0700722.. warning::
723
724 Use :meth:`~Popen.communicate` rather than :attr:`.stdin.write <Popen.stdin>`,
725 :attr:`.stdout.read <Popen.stdout>` or :attr:`.stderr.read <Popen.stderr>` to avoid
726 deadlocks due to any of the other OS pipe buffers filling up and blocking the
727 child process.
728
Georg Brandl116aa622007-08-15 14:28:22 +0000729
730.. attribute:: Popen.pid
731
732 The process ID of the child process.
733
Georg Brandl58bfdca2010-03-21 09:50:49 +0000734 Note that if you set the *shell* argument to ``True``, this is the process ID
735 of the spawned shell.
736
Georg Brandl116aa622007-08-15 14:28:22 +0000737
738.. attribute:: Popen.returncode
739
Christian Heimes7f044312008-01-06 17:05:40 +0000740 The child return code, set by :meth:`poll` and :meth:`wait` (and indirectly
741 by :meth:`communicate`). A ``None`` value indicates that the process
742 hasn't terminated yet.
Georg Brandl48310cd2009-01-03 21:18:54 +0000743
Christian Heimes7f044312008-01-06 17:05:40 +0000744 A negative value ``-N`` indicates that the child was terminated by signal
Gregory P. Smith8e0aa052014-05-11 13:28:35 -0700745 ``N`` (POSIX only).
Georg Brandl116aa622007-08-15 14:28:22 +0000746
747
Brian Curtine6242d72011-04-29 22:17:51 -0500748Windows Popen Helpers
749---------------------
750
751The :class:`STARTUPINFO` class and following constants are only available
752on Windows.
753
754.. class:: STARTUPINFO()
Brian Curtin73365dd2011-04-29 22:18:33 -0500755
Brian Curtine6242d72011-04-29 22:17:51 -0500756 Partial support of the Windows
757 `STARTUPINFO <http://msdn.microsoft.com/en-us/library/ms686331(v=vs.85).aspx>`__
758 structure is used for :class:`Popen` creation.
759
760 .. attribute:: dwFlags
761
Senthil Kumarana6bac952011-07-04 11:28:30 -0700762 A bit field that determines whether certain :class:`STARTUPINFO`
763 attributes are used when the process creates a window. ::
Brian Curtine6242d72011-04-29 22:17:51 -0500764
765 si = subprocess.STARTUPINFO()
766 si.dwFlags = subprocess.STARTF_USESTDHANDLES | subprocess.STARTF_USESHOWWINDOW
767
768 .. attribute:: hStdInput
769
Senthil Kumarana6bac952011-07-04 11:28:30 -0700770 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
771 is the standard input handle for the process. If
772 :data:`STARTF_USESTDHANDLES` is not specified, the default for standard
773 input is the keyboard buffer.
Brian Curtine6242d72011-04-29 22:17:51 -0500774
775 .. attribute:: hStdOutput
776
Senthil Kumarana6bac952011-07-04 11:28:30 -0700777 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
778 is the standard output handle for the process. Otherwise, this attribute
779 is ignored and the default for standard output is the console window's
Brian Curtine6242d72011-04-29 22:17:51 -0500780 buffer.
781
782 .. attribute:: hStdError
783
Senthil Kumarana6bac952011-07-04 11:28:30 -0700784 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
785 is the standard error handle for the process. Otherwise, this attribute is
Brian Curtine6242d72011-04-29 22:17:51 -0500786 ignored and the default for standard error is the console window's buffer.
787
788 .. attribute:: wShowWindow
789
Senthil Kumarana6bac952011-07-04 11:28:30 -0700790 If :attr:`dwFlags` specifies :data:`STARTF_USESHOWWINDOW`, this attribute
Brian Curtine6242d72011-04-29 22:17:51 -0500791 can be any of the values that can be specified in the ``nCmdShow``
792 parameter for the
793 `ShowWindow <http://msdn.microsoft.com/en-us/library/ms633548(v=vs.85).aspx>`__
Senthil Kumarana6bac952011-07-04 11:28:30 -0700794 function, except for ``SW_SHOWDEFAULT``. Otherwise, this attribute is
Brian Curtine6242d72011-04-29 22:17:51 -0500795 ignored.
Brian Curtin73365dd2011-04-29 22:18:33 -0500796
Brian Curtine6242d72011-04-29 22:17:51 -0500797 :data:`SW_HIDE` is provided for this attribute. It is used when
798 :class:`Popen` is called with ``shell=True``.
799
800
801Constants
802^^^^^^^^^
803
804The :mod:`subprocess` module exposes the following constants.
805
806.. data:: STD_INPUT_HANDLE
807
808 The standard input device. Initially, this is the console input buffer,
809 ``CONIN$``.
810
811.. data:: STD_OUTPUT_HANDLE
812
813 The standard output device. Initially, this is the active console screen
814 buffer, ``CONOUT$``.
815
816.. data:: STD_ERROR_HANDLE
817
818 The standard error device. Initially, this is the active console screen
819 buffer, ``CONOUT$``.
820
821.. data:: SW_HIDE
822
823 Hides the window. Another window will be activated.
824
825.. data:: STARTF_USESTDHANDLES
826
827 Specifies that the :attr:`STARTUPINFO.hStdInput`,
Senthil Kumarana6bac952011-07-04 11:28:30 -0700828 :attr:`STARTUPINFO.hStdOutput`, and :attr:`STARTUPINFO.hStdError` attributes
Brian Curtine6242d72011-04-29 22:17:51 -0500829 contain additional information.
830
831.. data:: STARTF_USESHOWWINDOW
832
Senthil Kumarana6bac952011-07-04 11:28:30 -0700833 Specifies that the :attr:`STARTUPINFO.wShowWindow` attribute contains
Brian Curtine6242d72011-04-29 22:17:51 -0500834 additional information.
835
836.. data:: CREATE_NEW_CONSOLE
837
838 The new process has a new console, instead of inheriting its parent's
839 console (the default).
Brian Curtin73365dd2011-04-29 22:18:33 -0500840
Brian Curtin30401932011-04-29 22:20:57 -0500841.. data:: CREATE_NEW_PROCESS_GROUP
842
843 A :class:`Popen` ``creationflags`` parameter to specify that a new process
844 group will be created. This flag is necessary for using :func:`os.kill`
845 on the subprocess.
846
847 This flag is ignored if :data:`CREATE_NEW_CONSOLE` is specified.
848
Brian Curtine6242d72011-04-29 22:17:51 -0500849
Benjamin Petersondcf97b92008-07-02 17:30:14 +0000850.. _subprocess-replacements:
851
Ezio Melotti402f75d2012-11-08 10:07:10 +0200852Replacing Older Functions with the :mod:`subprocess` Module
853-----------------------------------------------------------
Georg Brandl116aa622007-08-15 14:28:22 +0000854
Nick Coghlanc29248f2011-11-08 20:49:23 +1000855In this section, "a becomes b" means that b can be used as a replacement for a.
Georg Brandl116aa622007-08-15 14:28:22 +0000856
857.. note::
858
Nick Coghlanc29248f2011-11-08 20:49:23 +1000859 All "a" functions in this section fail (more or less) silently if the
860 executed program cannot be found; the "b" replacements raise :exc:`OSError`
861 instead.
Georg Brandl116aa622007-08-15 14:28:22 +0000862
Nick Coghlanc29248f2011-11-08 20:49:23 +1000863 In addition, the replacements using :func:`check_output` will fail with a
864 :exc:`CalledProcessError` if the requested operation produces a non-zero
Serhiy Storchaka9e0ae532013-08-24 00:23:38 +0300865 return code. The output is still available as the
866 :attr:`~CalledProcessError.output` attribute of the raised exception.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000867
868In the following examples, we assume that the relevant functions have already
Ezio Melotti402f75d2012-11-08 10:07:10 +0200869been imported from the :mod:`subprocess` module.
Georg Brandl116aa622007-08-15 14:28:22 +0000870
871
872Replacing /bin/sh shell backquote
873^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
874
875::
876
877 output=`mycmd myarg`
Nick Coghlanc29248f2011-11-08 20:49:23 +1000878 # becomes
879 output = check_output(["mycmd", "myarg"])
Georg Brandl116aa622007-08-15 14:28:22 +0000880
881
Benjamin Petersonf10a79a2008-10-11 00:49:57 +0000882Replacing shell pipeline
883^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000884
885::
886
887 output=`dmesg | grep hda`
Nick Coghlanc29248f2011-11-08 20:49:23 +1000888 # becomes
Georg Brandl116aa622007-08-15 14:28:22 +0000889 p1 = Popen(["dmesg"], stdout=PIPE)
890 p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
Gregory P. Smithe09d2f12011-02-05 21:47:25 +0000891 p1.stdout.close() # Allow p1 to receive a SIGPIPE if p2 exits.
Georg Brandl116aa622007-08-15 14:28:22 +0000892 output = p2.communicate()[0]
893
Gregory P. Smithe09d2f12011-02-05 21:47:25 +0000894The p1.stdout.close() call after starting the p2 is important in order for p1
895to receive a SIGPIPE if p2 exits before p1.
Georg Brandl116aa622007-08-15 14:28:22 +0000896
Nick Coghlanc29248f2011-11-08 20:49:23 +1000897Alternatively, for trusted input, the shell's own pipeline support may still
R David Murray28b8b942012-04-03 08:46:48 -0400898be used directly::
Nick Coghlanc29248f2011-11-08 20:49:23 +1000899
900 output=`dmesg | grep hda`
901 # becomes
902 output=check_output("dmesg | grep hda", shell=True)
903
904
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000905Replacing :func:`os.system`
906^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000907
908::
909
910 sts = os.system("mycmd" + " myarg")
Nick Coghlanc29248f2011-11-08 20:49:23 +1000911 # becomes
912 sts = call("mycmd" + " myarg", shell=True)
Georg Brandl116aa622007-08-15 14:28:22 +0000913
914Notes:
915
916* Calling the program through the shell is usually not required.
917
Georg Brandl116aa622007-08-15 14:28:22 +0000918A more realistic example would look like this::
919
920 try:
921 retcode = call("mycmd" + " myarg", shell=True)
922 if retcode < 0:
Collin Winterc79461b2007-09-01 23:34:30 +0000923 print("Child was terminated by signal", -retcode, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +0000924 else:
Collin Winterc79461b2007-09-01 23:34:30 +0000925 print("Child returned", retcode, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +0000926 except OSError as e:
Collin Winterc79461b2007-09-01 23:34:30 +0000927 print("Execution failed:", e, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +0000928
929
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000930Replacing the :func:`os.spawn <os.spawnl>` family
931^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000932
933P_NOWAIT example::
934
935 pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg")
936 ==>
937 pid = Popen(["/bin/mycmd", "myarg"]).pid
938
939P_WAIT example::
940
941 retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg")
942 ==>
943 retcode = call(["/bin/mycmd", "myarg"])
944
945Vector example::
946
947 os.spawnvp(os.P_NOWAIT, path, args)
948 ==>
949 Popen([path] + args[1:])
950
951Environment example::
952
953 os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env)
954 ==>
955 Popen(["/bin/mycmd", "myarg"], env={"PATH": "/usr/bin"})
956
957
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000958
959Replacing :func:`os.popen`, :func:`os.popen2`, :func:`os.popen3`
960^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000961
962::
963
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000964 (child_stdin, child_stdout) = os.popen2(cmd, mode, bufsize)
Georg Brandl116aa622007-08-15 14:28:22 +0000965 ==>
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000966 p = Popen(cmd, shell=True, bufsize=bufsize,
967 stdin=PIPE, stdout=PIPE, close_fds=True)
968 (child_stdin, child_stdout) = (p.stdin, p.stdout)
Georg Brandl116aa622007-08-15 14:28:22 +0000969
970::
971
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000972 (child_stdin,
973 child_stdout,
974 child_stderr) = os.popen3(cmd, mode, bufsize)
Georg Brandl116aa622007-08-15 14:28:22 +0000975 ==>
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000976 p = Popen(cmd, shell=True, bufsize=bufsize,
977 stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True)
978 (child_stdin,
979 child_stdout,
980 child_stderr) = (p.stdin, p.stdout, p.stderr)
981
982::
983
984 (child_stdin, child_stdout_and_stderr) = os.popen4(cmd, mode, bufsize)
985 ==>
986 p = Popen(cmd, shell=True, bufsize=bufsize,
987 stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True)
988 (child_stdin, child_stdout_and_stderr) = (p.stdin, p.stdout)
989
990Return code handling translates as follows::
991
992 pipe = os.popen(cmd, 'w')
993 ...
994 rc = pipe.close()
Stefan Krahfc9e08d2010-07-14 10:16:11 +0000995 if rc is not None and rc >> 8:
Ezio Melotti985e24d2009-09-13 07:54:02 +0000996 print("There were some errors")
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000997 ==>
998 process = Popen(cmd, 'w', stdin=PIPE)
999 ...
1000 process.stdin.close()
1001 if process.wait() != 0:
Ezio Melotti985e24d2009-09-13 07:54:02 +00001002 print("There were some errors")
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001003
1004
1005Replacing functions from the :mod:`popen2` module
1006^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1007
1008.. note::
1009
1010 If the cmd argument to popen2 functions is a string, the command is executed
1011 through /bin/sh. If it is a list, the command is directly executed.
1012
1013::
1014
1015 (child_stdout, child_stdin) = popen2.popen2("somestring", bufsize, mode)
1016 ==>
R David Murrayae9d1932014-05-14 10:09:52 -04001017 p = Popen("somestring", shell=True, bufsize=bufsize,
Benjamin Peterson87c8d872009-06-11 22:54:11 +00001018 stdin=PIPE, stdout=PIPE, close_fds=True)
1019 (child_stdout, child_stdin) = (p.stdout, p.stdin)
1020
1021::
1022
1023 (child_stdout, child_stdin) = popen2.popen2(["mycmd", "myarg"], bufsize, mode)
1024 ==>
1025 p = Popen(["mycmd", "myarg"], bufsize=bufsize,
1026 stdin=PIPE, stdout=PIPE, close_fds=True)
1027 (child_stdout, child_stdin) = (p.stdout, p.stdin)
1028
1029:class:`popen2.Popen3` and :class:`popen2.Popen4` basically work as
1030:class:`subprocess.Popen`, except that:
1031
1032* :class:`Popen` raises an exception if the execution fails.
1033
1034* the *capturestderr* argument is replaced with the *stderr* argument.
1035
1036* ``stdin=PIPE`` and ``stdout=PIPE`` must be specified.
1037
1038* popen2 closes all file descriptors by default, but you have to specify
Gregory P. Smithf5604852010-12-13 06:45:02 +00001039 ``close_fds=True`` with :class:`Popen` to guarantee this behavior on
1040 all platforms or past Python versions.
Eli Bendersky046a7642011-04-15 07:23:26 +03001041
Nick Coghlanc29248f2011-11-08 20:49:23 +10001042
Nick Coghlanc29248f2011-11-08 20:49:23 +10001043Legacy Shell Invocation Functions
Nick Coghlan32e4a582011-11-08 21:50:58 +10001044---------------------------------
Nick Coghlanc29248f2011-11-08 20:49:23 +10001045
1046This module also provides the following legacy functions from the 2.x
1047``commands`` module. These operations implicitly invoke the system shell and
1048none of the guarantees described above regarding security and exception
1049handling consistency are valid for these functions.
1050
1051.. function:: getstatusoutput(cmd)
1052
1053 Return ``(status, output)`` of executing *cmd* in a shell.
1054
Tim Golden60798142013-11-05 12:57:25 +00001055 Execute the string *cmd* in a shell with :meth:`Popen.check_output` and
1056 return a 2-tuple ``(status, output)``. Universal newlines mode is used;
1057 see the notes on :ref:`frequently-used-arguments` for more details.
Tim Golden3a2abb52013-11-03 18:24:50 +00001058
1059 A trailing newline is stripped from the output.
1060 The exit status for the command can be interpreted
Nick Coghlanc29248f2011-11-08 20:49:23 +10001061 according to the rules for the C function :c:func:`wait`. Example::
1062
1063 >>> subprocess.getstatusoutput('ls /bin/ls')
1064 (0, '/bin/ls')
1065 >>> subprocess.getstatusoutput('cat /bin/junk')
1066 (256, 'cat: /bin/junk: No such file or directory')
1067 >>> subprocess.getstatusoutput('/bin/junk')
1068 (256, 'sh: /bin/junk: not found')
1069
Gregory P. Smith8e0aa052014-05-11 13:28:35 -07001070 Availability: POSIX & Windows
R David Murray95b696a2014-03-07 20:04:17 -05001071
1072 .. versionchanged:: 3.3.4
1073 Windows support added
Nick Coghlanc29248f2011-11-08 20:49:23 +10001074
1075
1076.. function:: getoutput(cmd)
1077
1078 Return output (stdout and stderr) of executing *cmd* in a shell.
1079
1080 Like :func:`getstatusoutput`, except the exit status is ignored and the return
1081 value is a string containing the command's output. Example::
1082
1083 >>> subprocess.getoutput('ls /bin/ls')
1084 '/bin/ls'
1085
Gregory P. Smith8e0aa052014-05-11 13:28:35 -07001086 Availability: POSIX & Windows
R David Murray95b696a2014-03-07 20:04:17 -05001087
1088 .. versionchanged:: 3.3.4
1089 Windows support added
Nick Coghlanc29248f2011-11-08 20:49:23 +10001090
Nick Coghlan32e4a582011-11-08 21:50:58 +10001091
Eli Bendersky046a7642011-04-15 07:23:26 +03001092Notes
1093-----
1094
1095.. _converting-argument-sequence:
1096
1097Converting an argument sequence to a string on Windows
1098^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1099
1100On Windows, an *args* sequence is converted to a string that can be parsed
1101using the following rules (which correspond to the rules used by the MS C
1102runtime):
1103
11041. Arguments are delimited by white space, which is either a
1105 space or a tab.
1106
11072. A string surrounded by double quotation marks is
1108 interpreted as a single argument, regardless of white space
1109 contained within. A quoted string can be embedded in an
1110 argument.
1111
11123. A double quotation mark preceded by a backslash is
1113 interpreted as a literal double quotation mark.
1114
11154. Backslashes are interpreted literally, unless they
1116 immediately precede a double quotation mark.
1117
11185. If backslashes immediately precede a double quotation mark,
1119 every pair of backslashes is interpreted as a literal
1120 backslash. If the number of backslashes is odd, the last
1121 backslash escapes the next double quotation mark as
1122 described in rule 3.
1123
Eli Benderskyd2112312011-04-15 07:26:28 +03001124
Éric Araujo9bce3112011-07-27 18:29:31 +02001125.. seealso::
1126
1127 :mod:`shlex`
1128 Module which provides function to parse and escape command lines.