blob: 92b21b5ae90e35241406fdd689ed5f91a7919e63 [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
79 :attr:`returncode` attribute.
80
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
125 :attr:`returncode` attribute and any output in the :attr:`output`
126 attribute.
127
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
172 .. warning::
173
174 Invoking the system shell with ``shell=True`` can be a security hazard
175 if combined with untrusted input. See the warning under
176 :ref:`frequently-used-arguments` for details.
177
178 .. note::
179
180 Do not use ``stderr=PIPE`` with this function. As the pipe is not being
181 read in the current process, the child process may block if it
182 generates enough output to the pipe to fill up the OS pipe buffer.
183
Nick Coghlan217f05b2011-11-08 22:11:21 +1000184 .. versionchanged:: 3.3
185 *timeout* was added.
186
187
188.. data:: DEVNULL
189
190 Special value that can be used as the *stdin*, *stdout* or *stderr* argument
191 to :class:`Popen` and indicates that the special file :data:`os.devnull`
192 will be used.
193
194 .. versionadded:: 3.3
195
Nick Coghlanc29248f2011-11-08 20:49:23 +1000196
197.. data:: PIPE
198
199 Special value that can be used as the *stdin*, *stdout* or *stderr* argument
200 to :class:`Popen` and indicates that a pipe to the standard stream should be
201 opened.
202
203
204.. data:: STDOUT
205
206 Special value that can be used as the *stderr* argument to :class:`Popen` and
207 indicates that standard error should go into the same handle as standard
208 output.
209
210
Andrew Svetlovb4a09ab2012-08-09 15:11:45 +0300211.. exception:: SubprocessError
212
213 Base class for all other exceptions from this module.
214
215 .. versionadded:: 3.3
216
217
218.. exception:: TimeoutExpired
219
220 Subclass of :exc:`SubprocessError`, raised when a timeout expires
221 while waiting for a child process.
222
223 .. attribute:: cmd
224
225 Command that was used to spawn the child process.
226
227 .. attribute:: timeout
228
229 Timeout in seconds.
230
231 .. attribute:: output
232
233 Output of the child process if this exception is raised by
234 :func:`check_output`. Otherwise, ``None``.
235
236 .. versionadded:: 3.3
237
238
239.. exception:: CalledProcessError
240
241 Subclass of :exc:`SubprocessError`, raised when a process run by
242 :func:`check_call` or :func:`check_output` returns a non-zero exit status.
243
244 .. attribute:: returncode
245
246 Exit status of the child process.
247
248 .. attribute:: cmd
249
250 Command that was used to spawn the child process.
251
252 .. attribute:: output
253
254 Output of the child process if this exception is raised by
255 :func:`check_output`. Otherwise, ``None``.
256
257
258
Nick Coghlanc29248f2011-11-08 20:49:23 +1000259.. _frequently-used-arguments:
260
261Frequently Used Arguments
262^^^^^^^^^^^^^^^^^^^^^^^^^
263
264To support a wide variety of use cases, the :class:`Popen` constructor (and
265the convenience functions) accept a large number of optional arguments. For
266most typical use cases, many of these arguments can be safely left at their
267default values. The arguments that are most commonly needed are:
268
269 *args* is required for all calls and should be a string, or a sequence of
270 program arguments. Providing a sequence of arguments is generally
271 preferred, as it allows the module to take care of any required escaping
272 and quoting of arguments (e.g. to permit spaces in file names). If passing
273 a single string, either *shell* must be :const:`True` (see below) or else
274 the string must simply name the program to be executed without specifying
275 any arguments.
276
277 *stdin*, *stdout* and *stderr* specify the executed program's standard input,
278 standard output and standard error file handles, respectively. Valid values
Nick Coghlan217f05b2011-11-08 22:11:21 +1000279 are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive
280 integer), an existing file object, and ``None``. :data:`PIPE` indicates
281 that a new pipe to the child should be created. :data:`DEVNULL` indicates
282 that the special file :data:`os.devnull` will be used. With the default
283 settings of ``None``, no redirection will occur; the child's file handles
284 will be inherited from the parent. Additionally, *stderr* can be
285 :data:`STDOUT`, which indicates that the stderr data from the child
286 process should be captured into the same file handle as for *stdout*.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000287
R David Murray1b00f252012-08-15 10:43:58 -0400288 .. index::
289 single: universal newlines; subprocess module
290
R David Murray0689ce42012-08-15 11:13:31 -0400291 If *universal_newlines* is ``True``, the file objects *stdin*, *stdout* and
292 *stderr* will be opened as text streams in :term:`universal newlines` mode
293 using the encoding returned by :func:`locale.getpreferredencoding(False)
294 <locale.getpreferredencoding>`. For *stdin*, line ending characters
295 ``'\n'`` in the input will be converted to the default line separator
296 :data:`os.linesep`. For *stdout* and *stderr*, all line endings in the
297 output will be converted to ``'\n'``. For more information see the
298 documentation of the :class:`io.TextIOWrapper` class when the *newline*
299 argument to its constructor is ``None``.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000300
Andrew Svetlov50be4522012-08-13 22:09:04 +0300301 .. note::
302
Gregory P. Smith1f8a40b2013-03-20 18:32:03 -0700303 The newlines attribute of the file objects :attr:`Popen.stdin`,
304 :attr:`Popen.stdout` and :attr:`Popen.stderr` are not updated by
305 the :meth:`Popen.communicate` method.
Andrew Svetlov50be4522012-08-13 22:09:04 +0300306
307 If *shell* is ``True``, the specified command will be executed through
Ezio Melotti186d5232012-09-15 08:34:08 +0300308 the shell. This can be useful if you are using Python primarily for the
Nick Coghlanc29248f2011-11-08 20:49:23 +1000309 enhanced control flow it offers over most system shells and still want
Ezio Melotti186d5232012-09-15 08:34:08 +0300310 convenient access to other shell features such as shell pipes, filename
311 wildcards, environment variable expansion, and expansion of ``~`` to a
312 user's home directory. However, note that Python itself offers
313 implementations of many shell-like features (in particular, :mod:`glob`,
314 :mod:`fnmatch`, :func:`os.walk`, :func:`os.path.expandvars`,
315 :func:`os.path.expanduser`, and :mod:`shutil`).
Nick Coghlanc29248f2011-11-08 20:49:23 +1000316
Andrew Svetlov4805fa82012-08-13 22:11:14 +0300317 .. versionchanged:: 3.3
318 When *universal_newlines* is ``True``, the class uses the encoding
319 :func:`locale.getpreferredencoding(False) <locale.getpreferredencoding>`
320 instead of ``locale.getpreferredencoding()``. See the
321 :class:`io.TextIOWrapper` class for more information on this change.
322
Nick Coghlanc29248f2011-11-08 20:49:23 +1000323 .. warning::
324
325 Executing shell commands that incorporate unsanitized input from an
326 untrusted source makes a program vulnerable to `shell injection
327 <http://en.wikipedia.org/wiki/Shell_injection#Shell_injection>`_,
328 a serious security flaw which can result in arbitrary command execution.
Chris Jerdonekcc32a682012-10-10 22:52:22 -0700329 For this reason, the use of ``shell=True`` is **strongly discouraged**
330 in cases where the command string is constructed from external input::
Nick Coghlanc29248f2011-11-08 20:49:23 +1000331
332 >>> from subprocess import call
333 >>> filename = input("What file would you like to display?\n")
334 What file would you like to display?
335 non_existent; rm -rf / #
336 >>> call("cat " + filename, shell=True) # Uh-oh. This will end badly...
337
338 ``shell=False`` disables all shell based features, but does not suffer
339 from this vulnerability; see the Note in the :class:`Popen` constructor
340 documentation for helpful hints in getting ``shell=False`` to work.
341
Andrew Svetlovc2415eb2012-10-28 11:42:26 +0200342 When using ``shell=True``, :func:`shlex.quote` can be used to properly
343 escape whitespace and shell metacharacters in strings that are going to
344 be used to construct shell commands.
345
Nick Coghlanc29248f2011-11-08 20:49:23 +1000346These options, along with all of the other options, are described in more
347detail in the :class:`Popen` constructor documentation.
348
349
Sandro Tosi1526ad12011-12-25 11:27:37 +0100350Popen Constructor
Sandro Tosi3e6c8142011-12-25 17:14:11 +0100351^^^^^^^^^^^^^^^^^
Nick Coghlanc29248f2011-11-08 20:49:23 +1000352
353The underlying process creation and management in this module is handled by
354the :class:`Popen` class. It offers a lot of flexibility so that developers
355are able to handle the less common cases not covered by the convenience
356functions.
Georg Brandl116aa622007-08-15 14:28:22 +0000357
358
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700359.. class:: Popen(args, bufsize=0, executable=None, stdin=None, stdout=None, \
360 stderr=None, preexec_fn=None, close_fds=True, shell=False, \
361 cwd=None, env=None, universal_newlines=False, \
362 startupinfo=None, creationflags=0, restore_signals=True, \
363 start_new_session=False, pass_fds=())
Georg Brandl116aa622007-08-15 14:28:22 +0000364
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700365 Execute a child program in a new process. On Unix, the class uses
366 :meth:`os.execvp`-like behavior to execute the child program. On Windows,
367 the class uses the Windows ``CreateProcess()`` function. The arguments to
368 :class:`Popen` are as follows.
Georg Brandl116aa622007-08-15 14:28:22 +0000369
Chris Jerdonek470ee392012-10-08 23:06:57 -0700370 *args* should be a sequence of program arguments or else a single string.
371 By default, the program to execute is the first item in *args* if *args* is
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700372 a sequence. If *args* is a string, the interpretation is
373 platform-dependent and described below. See the *shell* and *executable*
374 arguments for additional differences from the default behavior. Unless
375 otherwise stated, it is recommended to pass *args* as a sequence.
Georg Brandl116aa622007-08-15 14:28:22 +0000376
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700377 On Unix, if *args* is a string, the string is interpreted as the name or
378 path of the program to execute. However, this can only be done if not
379 passing arguments to the program.
Georg Brandl116aa622007-08-15 14:28:22 +0000380
R. David Murray5973e4d2010-02-04 16:41:57 +0000381 .. note::
382
383 :meth:`shlex.split` can be useful when determining the correct
384 tokenization for *args*, especially in complex cases::
385
386 >>> import shlex, subprocess
R. David Murray73bc75b2010-02-05 16:25:12 +0000387 >>> command_line = input()
R. David Murray5973e4d2010-02-04 16:41:57 +0000388 /bin/vikings -input eggs.txt -output "spam spam.txt" -cmd "echo '$MONEY'"
389 >>> args = shlex.split(command_line)
390 >>> print(args)
391 ['/bin/vikings', '-input', 'eggs.txt', '-output', 'spam spam.txt', '-cmd', "echo '$MONEY'"]
392 >>> p = subprocess.Popen(args) # Success!
393
394 Note in particular that options (such as *-input*) and arguments (such
395 as *eggs.txt*) that are separated by whitespace in the shell go in separate
396 list elements, while arguments that need quoting or backslash escaping when
397 used in the shell (such as filenames containing spaces or the *echo* command
398 shown above) are single list elements.
399
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700400 On Windows, if *args* is a sequence, it will be converted to a string in a
401 manner described in :ref:`converting-argument-sequence`. This is because
402 the underlying ``CreateProcess()`` operates on strings.
Chris Jerdonek470ee392012-10-08 23:06:57 -0700403
404 The *shell* argument (which defaults to *False*) specifies whether to use
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700405 the shell as the program to execute. If *shell* is *True*, it is
406 recommended to pass *args* as a string rather than as a sequence.
Chris Jerdonek470ee392012-10-08 23:06:57 -0700407
408 On Unix with ``shell=True``, the shell defaults to :file:`/bin/sh`. If
409 *args* is a string, the string specifies the command
410 to execute through the shell. This means that the string must be
R. David Murray5973e4d2010-02-04 16:41:57 +0000411 formatted exactly as it would be when typed at the shell prompt. This
412 includes, for example, quoting or backslash escaping filenames with spaces in
413 them. If *args* is a sequence, the first item specifies the command string, and
414 any additional items will be treated as additional arguments to the shell
Chris Jerdonek470ee392012-10-08 23:06:57 -0700415 itself. That is to say, :class:`Popen` does the equivalent of::
R. David Murray5973e4d2010-02-04 16:41:57 +0000416
417 Popen(['/bin/sh', '-c', args[0], args[1], ...])
Georg Brandl116aa622007-08-15 14:28:22 +0000418
Chris Jerdonek470ee392012-10-08 23:06:57 -0700419 On Windows with ``shell=True``, the :envvar:`COMSPEC` environment variable
420 specifies the default shell. The only time you need to specify
421 ``shell=True`` on Windows is when the command you wish to execute is built
422 into the shell (e.g. :command:`dir` or :command:`copy`). You do not need
423 ``shell=True`` to run a batch file or console-based executable.
Georg Brandl116aa622007-08-15 14:28:22 +0000424
Chris Jerdonekcc32a682012-10-10 22:52:22 -0700425 .. warning::
426
427 Passing ``shell=True`` can be a security hazard if combined with
428 untrusted input. See the warning under :ref:`frequently-used-arguments`
429 for details.
430
Georg Brandl116aa622007-08-15 14:28:22 +0000431 *bufsize*, if given, has the same meaning as the corresponding argument to the
432 built-in open() function: :const:`0` means unbuffered, :const:`1` means line
433 buffered, any other positive value means use a buffer of (approximately) that
434 size. A negative *bufsize* means to use the system default, which usually means
435 fully buffered. The default value for *bufsize* is :const:`0` (unbuffered).
436
Antoine Pitrou4b876202010-06-02 17:10:49 +0000437 .. note::
438
439 If you experience performance issues, it is recommended that you try to
440 enable buffering by setting *bufsize* to either -1 or a large enough
441 positive value (such as 4096).
442
Chris Jerdonek470ee392012-10-08 23:06:57 -0700443 The *executable* argument specifies a replacement program to execute. It
444 is very seldom needed. When ``shell=False``, *executable* replaces the
Chris Jerdonek4a4a02b2012-10-10 17:46:18 -0700445 program to execute specified by *args*. However, the original *args* is
446 still passed to the program. Most programs treat the program specified
447 by *args* as the command name, which can then be different from the program
448 actually executed. On Unix, the *args* name
Chris Jerdonek470ee392012-10-08 23:06:57 -0700449 becomes the display name for the executable in utilities such as
450 :program:`ps`. If ``shell=True``, on Unix the *executable* argument
451 specifies a replacement shell for the default :file:`/bin/sh`.
Georg Brandl116aa622007-08-15 14:28:22 +0000452
Nick Coghlanc29248f2011-11-08 20:49:23 +1000453 *stdin*, *stdout* and *stderr* specify the executed program's standard input,
Georg Brandlaf265f42008-12-07 15:06:20 +0000454 standard output and standard error file handles, respectively. Valid values
Ross Lagerwallba102ec2011-03-16 18:40:25 +0200455 are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive
456 integer), an existing :term:`file object`, and ``None``. :data:`PIPE`
457 indicates that a new pipe to the child should be created. :data:`DEVNULL`
Nick Coghlan217f05b2011-11-08 22:11:21 +1000458 indicates that the special file :data:`os.devnull` will be used. With the
459 default settings of ``None``, no redirection will occur; the child's file
460 handles will be inherited from the parent. Additionally, *stderr* can be
461 :data:`STDOUT`, which indicates that the stderr data from the applications
462 should be captured into the same file handle as for stdout.
Georg Brandl116aa622007-08-15 14:28:22 +0000463
464 If *preexec_fn* is set to a callable object, this object will be called in the
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000465 child process just before the child is executed.
466 (Unix only)
467
468 .. warning::
469
470 The *preexec_fn* parameter is not safe to use in the presence of threads
471 in your application. The child process could deadlock before exec is
472 called.
473 If you must use it, keep it trivial! Minimize the number of libraries
474 you call into.
475
476 .. note::
477
478 If you need to modify the environment for the child use the *env*
479 parameter rather than doing it in a *preexec_fn*.
480 The *start_new_session* parameter can take the place of a previously
481 common use of *preexec_fn* to call os.setsid() in the child.
Georg Brandl116aa622007-08-15 14:28:22 +0000482
483 If *close_fds* is true, all file descriptors except :const:`0`, :const:`1` and
484 :const:`2` will be closed before the child process is executed. (Unix only).
Gregory P. Smith8edd99d2010-12-14 13:43:30 +0000485 The default varies by platform: Always true on Unix. On Windows it is
486 true when *stdin*/*stdout*/*stderr* are :const:`None`, false otherwise.
Gregory P. Smithd23047b2010-12-04 09:10:44 +0000487 On Windows, if *close_fds* is true then no handles will be inherited by the
Georg Brandl116aa622007-08-15 14:28:22 +0000488 child process. Note that on Windows, you cannot set *close_fds* to true and
489 also redirect the standard handles by setting *stdin*, *stdout* or *stderr*.
490
Gregory P. Smith8edd99d2010-12-14 13:43:30 +0000491 .. versionchanged:: 3.2
492 The default for *close_fds* was changed from :const:`False` to
493 what is described above.
494
495 *pass_fds* is an optional sequence of file descriptors to keep open
496 between the parent and child. Providing any *pass_fds* forces
497 *close_fds* to be :const:`True`. (Unix only)
498
499 .. versionadded:: 3.2
500 The *pass_fds* parameter was added.
Georg Brandl116aa622007-08-15 14:28:22 +0000501
Chris Jerdonekec3ea942012-09-30 00:10:28 -0700502 If *cwd* is not ``None``, the function changes the working directory to
503 *cwd* before executing the child. In particular, the function looks for
504 *executable* (or for the first item in *args*) relative to *cwd* if the
505 executable path is a relative path.
Georg Brandl116aa622007-08-15 14:28:22 +0000506
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000507 If *restore_signals* is True (the default) all signals that Python has set to
508 SIG_IGN are restored to SIG_DFL in the child process before the exec.
509 Currently this includes the SIGPIPE, SIGXFZ and SIGXFSZ signals.
510 (Unix only)
511
512 .. versionchanged:: 3.2
513 *restore_signals* was added.
514
515 If *start_new_session* is True the setsid() system call will be made in the
516 child process prior to the execution of the subprocess. (Unix only)
517
518 .. versionchanged:: 3.2
519 *start_new_session* was added.
520
Christian Heimesa342c012008-04-20 21:01:16 +0000521 If *env* is not ``None``, it must be a mapping that defines the environment
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000522 variables for the new process; these are used instead of the default
523 behavior of inheriting the current process' environment.
Georg Brandl116aa622007-08-15 14:28:22 +0000524
R. David Murray1055e892009-04-16 18:15:32 +0000525 .. note::
R. David Murrayf4ac1492009-04-15 22:35:15 +0000526
Georg Brandl2708f3a2009-12-20 14:38:23 +0000527 If specified, *env* must provide any variables required for the program to
528 execute. On Windows, in order to run a `side-by-side assembly`_ the
529 specified *env* **must** include a valid :envvar:`SystemRoot`.
R. David Murrayf4ac1492009-04-15 22:35:15 +0000530
R. David Murray1055e892009-04-16 18:15:32 +0000531 .. _side-by-side assembly: http://en.wikipedia.org/wiki/Side-by-Side_Assembly
532
Andrew Svetlov50be4522012-08-13 22:09:04 +0300533 If *universal_newlines* is ``True``, the file objects *stdin*, *stdout*
R David Murray1b00f252012-08-15 10:43:58 -0400534 and *stderr* are opened as text streams in universal newlines mode, as
Andrew Svetlov50be4522012-08-13 22:09:04 +0300535 described above in :ref:`frequently-used-arguments`.
Georg Brandl116aa622007-08-15 14:28:22 +0000536
Brian Curtine6242d72011-04-29 22:17:51 -0500537 If given, *startupinfo* will be a :class:`STARTUPINFO` object, which is
538 passed to the underlying ``CreateProcess`` function.
Brian Curtin30401932011-04-29 22:20:57 -0500539 *creationflags*, if given, can be :data:`CREATE_NEW_CONSOLE` or
540 :data:`CREATE_NEW_PROCESS_GROUP`. (Windows only)
Georg Brandl116aa622007-08-15 14:28:22 +0000541
Gregory P. Smith6b657452011-05-11 21:42:08 -0700542 Popen objects are supported as context managers via the :keyword:`with` statement:
543 on exit, standard file descriptors are closed, and the process is waited for.
Brian Curtin79cdb662010-12-03 02:46:02 +0000544 ::
545
546 with Popen(["ifconfig"], stdout=PIPE) as proc:
547 log.write(proc.stdout.read())
548
549 .. versionchanged:: 3.2
550 Added context manager support.
551
Georg Brandl116aa622007-08-15 14:28:22 +0000552
Georg Brandl116aa622007-08-15 14:28:22 +0000553Exceptions
554^^^^^^^^^^
555
556Exceptions raised in the child process, before the new program has started to
557execute, will be re-raised in the parent. Additionally, the exception object
558will have one extra attribute called :attr:`child_traceback`, which is a string
Georg Brandl81675612010-08-26 14:30:56 +0000559containing traceback information from the child's point of view.
Georg Brandl116aa622007-08-15 14:28:22 +0000560
561The most common exception raised is :exc:`OSError`. This occurs, for example,
562when trying to execute a non-existent file. Applications should prepare for
563:exc:`OSError` exceptions.
564
565A :exc:`ValueError` will be raised if :class:`Popen` is called with invalid
566arguments.
567
Nick Coghlanc29248f2011-11-08 20:49:23 +1000568:func:`check_call` and :func:`check_output` will raise
569:exc:`CalledProcessError` if the called process returns a non-zero return
570code.
Georg Brandl116aa622007-08-15 14:28:22 +0000571
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400572All of the functions and methods that accept a *timeout* parameter, such as
573:func:`call` and :meth:`Popen.communicate` will raise :exc:`TimeoutExpired` if
574the timeout expires before the process exits.
575
Ronald Oussorenc1577902011-03-16 10:03:10 -0400576Exceptions defined in this module all inherit from :exc:`SubprocessError`.
Gregory P. Smith54d412e2011-03-14 14:08:43 -0400577
578 .. versionadded:: 3.3
579 The :exc:`SubprocessError` base class was added.
580
Georg Brandl116aa622007-08-15 14:28:22 +0000581
582Security
583^^^^^^^^
584
Nick Coghlanc29248f2011-11-08 20:49:23 +1000585Unlike some other popen functions, this implementation will never call a
586system shell implicitly. This means that all characters, including shell
587metacharacters, can safely be passed to child processes. Obviously, if the
588shell is invoked explicitly, then it is the application's responsibility to
589ensure that all whitespace and metacharacters are quoted appropriately.
Georg Brandl116aa622007-08-15 14:28:22 +0000590
591
592Popen Objects
593-------------
594
595Instances of the :class:`Popen` class have the following methods:
596
597
598.. method:: Popen.poll()
599
Christian Heimes7f044312008-01-06 17:05:40 +0000600 Check if child process has terminated. Set and return :attr:`returncode`
601 attribute.
Georg Brandl116aa622007-08-15 14:28:22 +0000602
603
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400604.. method:: Popen.wait(timeout=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000605
Christian Heimes7f044312008-01-06 17:05:40 +0000606 Wait for child process to terminate. Set and return :attr:`returncode`
607 attribute.
Georg Brandl116aa622007-08-15 14:28:22 +0000608
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400609 If the process does not terminate after *timeout* seconds, raise a
610 :exc:`TimeoutExpired` exception. It is safe to catch this exception and
611 retry the wait.
612
Georg Brandl734e2682008-08-12 08:18:18 +0000613 .. warning::
614
Philip Jenveyb0896842009-12-03 02:29:36 +0000615 This will deadlock when using ``stdout=PIPE`` and/or
616 ``stderr=PIPE`` and the child process generates enough output to
617 a pipe such that it blocks waiting for the OS pipe buffer to
618 accept more data. Use :meth:`communicate` to avoid that.
Georg Brandl734e2682008-08-12 08:18:18 +0000619
Reid Kleckner28f13032011-03-14 12:36:53 -0400620 .. versionchanged:: 3.3
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400621 *timeout* was added.
Georg Brandl116aa622007-08-15 14:28:22 +0000622
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400623
624.. method:: Popen.communicate(input=None, timeout=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000625
626 Interact with process: Send data to stdin. Read data from stdout and stderr,
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400627 until end-of-file is reached. Wait for process to terminate. The optional
Gregory P. Smitha454ef62011-05-22 22:29:49 -0700628 *input* argument should be data to be sent to the child process, or
629 ``None``, if no data should be sent to the child. The type of *input*
630 must be bytes or, if *universal_newlines* was ``True``, a string.
Georg Brandl116aa622007-08-15 14:28:22 +0000631
Georg Brandlaf265f42008-12-07 15:06:20 +0000632 :meth:`communicate` returns a tuple ``(stdoutdata, stderrdata)``.
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
Georg Brandl734e2682008-08-12 08:18:18 +0000689.. warning::
690
Ezio Melottiaa935df2012-08-27 10:00:05 +0300691 Use :meth:`~Popen.communicate` rather than :attr:`.stdin.write <Popen.stdin>`,
692 :attr:`.stdout.read <Popen.stdout>` or :attr:`.stderr.read <Popen.stderr>` to avoid
Georg Brandle720c0a2009-04-27 16:20:50 +0000693 deadlocks due to any of the other OS pipe buffers filling up and blocking the
694 child process.
Georg Brandl734e2682008-08-12 08:18:18 +0000695
696
Georg Brandl116aa622007-08-15 14:28:22 +0000697.. attribute:: Popen.stdin
698
Antoine Pitrou11cb9612010-09-15 11:11:28 +0000699 If the *stdin* argument was :data:`PIPE`, this attribute is a :term:`file
700 object` that provides input to the child process. Otherwise, it is ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000701
702
703.. attribute:: Popen.stdout
704
Antoine Pitrou11cb9612010-09-15 11:11:28 +0000705 If the *stdout* argument was :data:`PIPE`, this attribute is a :term:`file
706 object` that provides output from the child process. Otherwise, it is ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000707
708
709.. attribute:: Popen.stderr
710
Antoine Pitrou11cb9612010-09-15 11:11:28 +0000711 If the *stderr* argument was :data:`PIPE`, this attribute is a :term:`file
712 object` that provides error output from the child process. Otherwise, it is
Georg Brandlaf265f42008-12-07 15:06:20 +0000713 ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000714
715
716.. attribute:: Popen.pid
717
718 The process ID of the child process.
719
Georg Brandl58bfdca2010-03-21 09:50:49 +0000720 Note that if you set the *shell* argument to ``True``, this is the process ID
721 of the spawned shell.
722
Georg Brandl116aa622007-08-15 14:28:22 +0000723
724.. attribute:: Popen.returncode
725
Christian Heimes7f044312008-01-06 17:05:40 +0000726 The child return code, set by :meth:`poll` and :meth:`wait` (and indirectly
727 by :meth:`communicate`). A ``None`` value indicates that the process
728 hasn't terminated yet.
Georg Brandl48310cd2009-01-03 21:18:54 +0000729
Christian Heimes7f044312008-01-06 17:05:40 +0000730 A negative value ``-N`` indicates that the child was terminated by signal
731 ``N`` (Unix only).
Georg Brandl116aa622007-08-15 14:28:22 +0000732
733
Brian Curtine6242d72011-04-29 22:17:51 -0500734Windows Popen Helpers
735---------------------
736
737The :class:`STARTUPINFO` class and following constants are only available
738on Windows.
739
740.. class:: STARTUPINFO()
Brian Curtin73365dd2011-04-29 22:18:33 -0500741
Brian Curtine6242d72011-04-29 22:17:51 -0500742 Partial support of the Windows
743 `STARTUPINFO <http://msdn.microsoft.com/en-us/library/ms686331(v=vs.85).aspx>`__
744 structure is used for :class:`Popen` creation.
745
746 .. attribute:: dwFlags
747
Senthil Kumarana6bac952011-07-04 11:28:30 -0700748 A bit field that determines whether certain :class:`STARTUPINFO`
749 attributes are used when the process creates a window. ::
Brian Curtine6242d72011-04-29 22:17:51 -0500750
751 si = subprocess.STARTUPINFO()
752 si.dwFlags = subprocess.STARTF_USESTDHANDLES | subprocess.STARTF_USESHOWWINDOW
753
754 .. attribute:: hStdInput
755
Senthil Kumarana6bac952011-07-04 11:28:30 -0700756 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
757 is the standard input handle for the process. If
758 :data:`STARTF_USESTDHANDLES` is not specified, the default for standard
759 input is the keyboard buffer.
Brian Curtine6242d72011-04-29 22:17:51 -0500760
761 .. attribute:: hStdOutput
762
Senthil Kumarana6bac952011-07-04 11:28:30 -0700763 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
764 is the standard output handle for the process. Otherwise, this attribute
765 is ignored and the default for standard output is the console window's
Brian Curtine6242d72011-04-29 22:17:51 -0500766 buffer.
767
768 .. attribute:: hStdError
769
Senthil Kumarana6bac952011-07-04 11:28:30 -0700770 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
771 is the standard error handle for the process. Otherwise, this attribute is
Brian Curtine6242d72011-04-29 22:17:51 -0500772 ignored and the default for standard error is the console window's buffer.
773
774 .. attribute:: wShowWindow
775
Senthil Kumarana6bac952011-07-04 11:28:30 -0700776 If :attr:`dwFlags` specifies :data:`STARTF_USESHOWWINDOW`, this attribute
Brian Curtine6242d72011-04-29 22:17:51 -0500777 can be any of the values that can be specified in the ``nCmdShow``
778 parameter for the
779 `ShowWindow <http://msdn.microsoft.com/en-us/library/ms633548(v=vs.85).aspx>`__
Senthil Kumarana6bac952011-07-04 11:28:30 -0700780 function, except for ``SW_SHOWDEFAULT``. Otherwise, this attribute is
Brian Curtine6242d72011-04-29 22:17:51 -0500781 ignored.
Brian Curtin73365dd2011-04-29 22:18:33 -0500782
Brian Curtine6242d72011-04-29 22:17:51 -0500783 :data:`SW_HIDE` is provided for this attribute. It is used when
784 :class:`Popen` is called with ``shell=True``.
785
786
787Constants
788^^^^^^^^^
789
790The :mod:`subprocess` module exposes the following constants.
791
792.. data:: STD_INPUT_HANDLE
793
794 The standard input device. Initially, this is the console input buffer,
795 ``CONIN$``.
796
797.. data:: STD_OUTPUT_HANDLE
798
799 The standard output device. Initially, this is the active console screen
800 buffer, ``CONOUT$``.
801
802.. data:: STD_ERROR_HANDLE
803
804 The standard error device. Initially, this is the active console screen
805 buffer, ``CONOUT$``.
806
807.. data:: SW_HIDE
808
809 Hides the window. Another window will be activated.
810
811.. data:: STARTF_USESTDHANDLES
812
813 Specifies that the :attr:`STARTUPINFO.hStdInput`,
Senthil Kumarana6bac952011-07-04 11:28:30 -0700814 :attr:`STARTUPINFO.hStdOutput`, and :attr:`STARTUPINFO.hStdError` attributes
Brian Curtine6242d72011-04-29 22:17:51 -0500815 contain additional information.
816
817.. data:: STARTF_USESHOWWINDOW
818
Senthil Kumarana6bac952011-07-04 11:28:30 -0700819 Specifies that the :attr:`STARTUPINFO.wShowWindow` attribute contains
Brian Curtine6242d72011-04-29 22:17:51 -0500820 additional information.
821
822.. data:: CREATE_NEW_CONSOLE
823
824 The new process has a new console, instead of inheriting its parent's
825 console (the default).
Brian Curtin73365dd2011-04-29 22:18:33 -0500826
Brian Curtine6242d72011-04-29 22:17:51 -0500827 This flag is always set when :class:`Popen` is created with ``shell=True``.
828
Brian Curtin30401932011-04-29 22:20:57 -0500829.. data:: CREATE_NEW_PROCESS_GROUP
830
831 A :class:`Popen` ``creationflags`` parameter to specify that a new process
832 group will be created. This flag is necessary for using :func:`os.kill`
833 on the subprocess.
834
835 This flag is ignored if :data:`CREATE_NEW_CONSOLE` is specified.
836
Brian Curtine6242d72011-04-29 22:17:51 -0500837
Benjamin Petersondcf97b92008-07-02 17:30:14 +0000838.. _subprocess-replacements:
839
Ezio Melotti402f75d2012-11-08 10:07:10 +0200840Replacing Older Functions with the :mod:`subprocess` Module
841-----------------------------------------------------------
Georg Brandl116aa622007-08-15 14:28:22 +0000842
Nick Coghlanc29248f2011-11-08 20:49:23 +1000843In this section, "a becomes b" means that b can be used as a replacement for a.
Georg Brandl116aa622007-08-15 14:28:22 +0000844
845.. note::
846
Nick Coghlanc29248f2011-11-08 20:49:23 +1000847 All "a" functions in this section fail (more or less) silently if the
848 executed program cannot be found; the "b" replacements raise :exc:`OSError`
849 instead.
Georg Brandl116aa622007-08-15 14:28:22 +0000850
Nick Coghlanc29248f2011-11-08 20:49:23 +1000851 In addition, the replacements using :func:`check_output` will fail with a
852 :exc:`CalledProcessError` if the requested operation produces a non-zero
853 return code. The output is still available as the ``output`` attribute of
854 the raised exception.
855
856In the following examples, we assume that the relevant functions have already
Ezio Melotti402f75d2012-11-08 10:07:10 +0200857been imported from the :mod:`subprocess` module.
Georg Brandl116aa622007-08-15 14:28:22 +0000858
859
860Replacing /bin/sh shell backquote
861^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
862
863::
864
865 output=`mycmd myarg`
Nick Coghlanc29248f2011-11-08 20:49:23 +1000866 # becomes
867 output = check_output(["mycmd", "myarg"])
Georg Brandl116aa622007-08-15 14:28:22 +0000868
869
Benjamin Petersonf10a79a2008-10-11 00:49:57 +0000870Replacing shell pipeline
871^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000872
873::
874
875 output=`dmesg | grep hda`
Nick Coghlanc29248f2011-11-08 20:49:23 +1000876 # becomes
Georg Brandl116aa622007-08-15 14:28:22 +0000877 p1 = Popen(["dmesg"], stdout=PIPE)
878 p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
Gregory P. Smithe09d2f12011-02-05 21:47:25 +0000879 p1.stdout.close() # Allow p1 to receive a SIGPIPE if p2 exits.
Georg Brandl116aa622007-08-15 14:28:22 +0000880 output = p2.communicate()[0]
881
Gregory P. Smithe09d2f12011-02-05 21:47:25 +0000882The p1.stdout.close() call after starting the p2 is important in order for p1
883to receive a SIGPIPE if p2 exits before p1.
Georg Brandl116aa622007-08-15 14:28:22 +0000884
Nick Coghlanc29248f2011-11-08 20:49:23 +1000885Alternatively, for trusted input, the shell's own pipeline support may still
R David Murray28b8b942012-04-03 08:46:48 -0400886be used directly::
Nick Coghlanc29248f2011-11-08 20:49:23 +1000887
888 output=`dmesg | grep hda`
889 # becomes
890 output=check_output("dmesg | grep hda", shell=True)
891
892
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000893Replacing :func:`os.system`
894^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000895
896::
897
898 sts = os.system("mycmd" + " myarg")
Nick Coghlanc29248f2011-11-08 20:49:23 +1000899 # becomes
900 sts = call("mycmd" + " myarg", shell=True)
Georg Brandl116aa622007-08-15 14:28:22 +0000901
902Notes:
903
904* Calling the program through the shell is usually not required.
905
Georg Brandl116aa622007-08-15 14:28:22 +0000906A more realistic example would look like this::
907
908 try:
909 retcode = call("mycmd" + " myarg", shell=True)
910 if retcode < 0:
Collin Winterc79461b2007-09-01 23:34:30 +0000911 print("Child was terminated by signal", -retcode, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +0000912 else:
Collin Winterc79461b2007-09-01 23:34:30 +0000913 print("Child returned", retcode, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +0000914 except OSError as e:
Collin Winterc79461b2007-09-01 23:34:30 +0000915 print("Execution failed:", e, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +0000916
917
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000918Replacing the :func:`os.spawn <os.spawnl>` family
919^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000920
921P_NOWAIT example::
922
923 pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg")
924 ==>
925 pid = Popen(["/bin/mycmd", "myarg"]).pid
926
927P_WAIT example::
928
929 retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg")
930 ==>
931 retcode = call(["/bin/mycmd", "myarg"])
932
933Vector example::
934
935 os.spawnvp(os.P_NOWAIT, path, args)
936 ==>
937 Popen([path] + args[1:])
938
939Environment example::
940
941 os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env)
942 ==>
943 Popen(["/bin/mycmd", "myarg"], env={"PATH": "/usr/bin"})
944
945
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000946
947Replacing :func:`os.popen`, :func:`os.popen2`, :func:`os.popen3`
948^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000949
950::
951
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000952 (child_stdin, child_stdout) = os.popen2(cmd, mode, bufsize)
Georg Brandl116aa622007-08-15 14:28:22 +0000953 ==>
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000954 p = Popen(cmd, shell=True, bufsize=bufsize,
955 stdin=PIPE, stdout=PIPE, close_fds=True)
956 (child_stdin, child_stdout) = (p.stdin, p.stdout)
Georg Brandl116aa622007-08-15 14:28:22 +0000957
958::
959
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000960 (child_stdin,
961 child_stdout,
962 child_stderr) = os.popen3(cmd, mode, bufsize)
Georg Brandl116aa622007-08-15 14:28:22 +0000963 ==>
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000964 p = Popen(cmd, shell=True, bufsize=bufsize,
965 stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True)
966 (child_stdin,
967 child_stdout,
968 child_stderr) = (p.stdin, p.stdout, p.stderr)
969
970::
971
972 (child_stdin, child_stdout_and_stderr) = os.popen4(cmd, mode, bufsize)
973 ==>
974 p = Popen(cmd, shell=True, bufsize=bufsize,
975 stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True)
976 (child_stdin, child_stdout_and_stderr) = (p.stdin, p.stdout)
977
978Return code handling translates as follows::
979
980 pipe = os.popen(cmd, 'w')
981 ...
982 rc = pipe.close()
Stefan Krahfc9e08d2010-07-14 10:16:11 +0000983 if rc is not None and rc >> 8:
Ezio Melotti985e24d2009-09-13 07:54:02 +0000984 print("There were some errors")
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000985 ==>
986 process = Popen(cmd, 'w', stdin=PIPE)
987 ...
988 process.stdin.close()
989 if process.wait() != 0:
Ezio Melotti985e24d2009-09-13 07:54:02 +0000990 print("There were some errors")
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000991
992
993Replacing functions from the :mod:`popen2` module
994^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
995
996.. note::
997
998 If the cmd argument to popen2 functions is a string, the command is executed
999 through /bin/sh. If it is a list, the command is directly executed.
1000
1001::
1002
1003 (child_stdout, child_stdin) = popen2.popen2("somestring", bufsize, mode)
1004 ==>
1005 p = Popen(["somestring"], shell=True, bufsize=bufsize,
1006 stdin=PIPE, stdout=PIPE, close_fds=True)
1007 (child_stdout, child_stdin) = (p.stdout, p.stdin)
1008
1009::
1010
1011 (child_stdout, child_stdin) = popen2.popen2(["mycmd", "myarg"], bufsize, mode)
1012 ==>
1013 p = Popen(["mycmd", "myarg"], bufsize=bufsize,
1014 stdin=PIPE, stdout=PIPE, close_fds=True)
1015 (child_stdout, child_stdin) = (p.stdout, p.stdin)
1016
1017:class:`popen2.Popen3` and :class:`popen2.Popen4` basically work as
1018:class:`subprocess.Popen`, except that:
1019
1020* :class:`Popen` raises an exception if the execution fails.
1021
1022* the *capturestderr* argument is replaced with the *stderr* argument.
1023
1024* ``stdin=PIPE`` and ``stdout=PIPE`` must be specified.
1025
1026* popen2 closes all file descriptors by default, but you have to specify
Gregory P. Smithf5604852010-12-13 06:45:02 +00001027 ``close_fds=True`` with :class:`Popen` to guarantee this behavior on
1028 all platforms or past Python versions.
Eli Bendersky046a7642011-04-15 07:23:26 +03001029
Nick Coghlanc29248f2011-11-08 20:49:23 +10001030
Nick Coghlanc29248f2011-11-08 20:49:23 +10001031Legacy Shell Invocation Functions
Nick Coghlan32e4a582011-11-08 21:50:58 +10001032---------------------------------
Nick Coghlanc29248f2011-11-08 20:49:23 +10001033
1034This module also provides the following legacy functions from the 2.x
1035``commands`` module. These operations implicitly invoke the system shell and
1036none of the guarantees described above regarding security and exception
1037handling consistency are valid for these functions.
1038
1039.. function:: getstatusoutput(cmd)
1040
1041 Return ``(status, output)`` of executing *cmd* in a shell.
1042
1043 Execute the string *cmd* in a shell with :func:`os.popen` and return a 2-tuple
1044 ``(status, output)``. *cmd* is actually run as ``{ cmd ; } 2>&1``, so that the
1045 returned output will contain output or error messages. A trailing newline is
1046 stripped from the output. The exit status for the command can be interpreted
1047 according to the rules for the C function :c:func:`wait`. Example::
1048
1049 >>> subprocess.getstatusoutput('ls /bin/ls')
1050 (0, '/bin/ls')
1051 >>> subprocess.getstatusoutput('cat /bin/junk')
1052 (256, 'cat: /bin/junk: No such file or directory')
1053 >>> subprocess.getstatusoutput('/bin/junk')
1054 (256, 'sh: /bin/junk: not found')
1055
1056 Availability: UNIX.
1057
1058
1059.. function:: getoutput(cmd)
1060
1061 Return output (stdout and stderr) of executing *cmd* in a shell.
1062
1063 Like :func:`getstatusoutput`, except the exit status is ignored and the return
1064 value is a string containing the command's output. Example::
1065
1066 >>> subprocess.getoutput('ls /bin/ls')
1067 '/bin/ls'
1068
1069 Availability: UNIX.
1070
Nick Coghlan32e4a582011-11-08 21:50:58 +10001071
Eli Bendersky046a7642011-04-15 07:23:26 +03001072Notes
1073-----
1074
1075.. _converting-argument-sequence:
1076
1077Converting an argument sequence to a string on Windows
1078^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1079
1080On Windows, an *args* sequence is converted to a string that can be parsed
1081using the following rules (which correspond to the rules used by the MS C
1082runtime):
1083
10841. Arguments are delimited by white space, which is either a
1085 space or a tab.
1086
10872. A string surrounded by double quotation marks is
1088 interpreted as a single argument, regardless of white space
1089 contained within. A quoted string can be embedded in an
1090 argument.
1091
10923. A double quotation mark preceded by a backslash is
1093 interpreted as a literal double quotation mark.
1094
10954. Backslashes are interpreted literally, unless they
1096 immediately precede a double quotation mark.
1097
10985. If backslashes immediately precede a double quotation mark,
1099 every pair of backslashes is interpreted as a literal
1100 backslash. If the number of backslashes is odd, the last
1101 backslash escapes the next double quotation mark as
1102 described in rule 3.
1103
Eli Benderskyd2112312011-04-15 07:26:28 +03001104
Éric Araujo9bce3112011-07-27 18:29:31 +02001105.. seealso::
1106
1107 :mod:`shlex`
1108 Module which provides function to parse and escape command lines.