blob: ff6bb9927b9a54a78e4541d67a1927897bf801d9 [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
25Using the subprocess Module
26---------------------------
27
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
121 Run command with arguments and return its output as a byte string.
122
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
Andrew Svetlov50be4522012-08-13 22:09:04 +0300291 If *universal_newlines* is ``True``, the file objects *stdin*, *stdout*
R David Murray1b00f252012-08-15 10:43:58 -0400292 and *stderr* will be opened as text streams in :term:`universal newlines`
293 mode using the encoding returned by :func:`locale.getpreferredencoding`.
Andrew Svetlov50be4522012-08-13 22:09:04 +0300294 For *stdin*, line ending characters ``'\n'`` in the input will be converted
295 to the default line separator :data:`os.linesep`. For *stdout* and
296 *stderr*, all line endings in the output will be converted to ``'\n'``.
297 For more information see the documentation of the :class:`io.TextIOWrapper`
298 class when the *newline* argument to its constructor is ``None``.
Nick Coghlanc29248f2011-11-08 20:49:23 +1000299
Andrew Svetlov50be4522012-08-13 22:09:04 +0300300 .. note::
301
302 The *universal_newlines* feature is supported only if Python is built
303 with universal newline support (the default). Also, the newlines
304 attribute of the file objects :attr:`Popen.stdin`, :attr:`Popen.stdout`
305 and :attr:`Popen.stderr` are not updated by the
306 :meth:`Popen.communicate` method.
307
308 If *shell* is ``True``, the specified command will be executed through
Nick Coghlanc29248f2011-11-08 20:49:23 +1000309 the shell. This can be useful if you are using Python primarily for the
310 enhanced control flow it offers over most system shells and still want
311 access to other shell features such as filename wildcards, shell pipes and
312 environment variable expansion.
313
Andrew Svetlov4805fa82012-08-13 22:11:14 +0300314 .. versionchanged:: 3.3
315 When *universal_newlines* is ``True``, the class uses the encoding
316 :func:`locale.getpreferredencoding(False) <locale.getpreferredencoding>`
317 instead of ``locale.getpreferredencoding()``. See the
318 :class:`io.TextIOWrapper` class for more information on this change.
319
Nick Coghlanc29248f2011-11-08 20:49:23 +1000320 .. warning::
321
322 Executing shell commands that incorporate unsanitized input from an
323 untrusted source makes a program vulnerable to `shell injection
324 <http://en.wikipedia.org/wiki/Shell_injection#Shell_injection>`_,
325 a serious security flaw which can result in arbitrary command execution.
326 For this reason, the use of *shell=True* is **strongly discouraged** in cases
327 where the command string is constructed from external input::
328
329 >>> from subprocess import call
330 >>> filename = input("What file would you like to display?\n")
331 What file would you like to display?
332 non_existent; rm -rf / #
333 >>> call("cat " + filename, shell=True) # Uh-oh. This will end badly...
334
335 ``shell=False`` disables all shell based features, but does not suffer
336 from this vulnerability; see the Note in the :class:`Popen` constructor
337 documentation for helpful hints in getting ``shell=False`` to work.
338
339These options, along with all of the other options, are described in more
340detail in the :class:`Popen` constructor documentation.
341
342
Sandro Tosi1526ad12011-12-25 11:27:37 +0100343Popen Constructor
Sandro Tosi3e6c8142011-12-25 17:14:11 +0100344^^^^^^^^^^^^^^^^^
Nick Coghlanc29248f2011-11-08 20:49:23 +1000345
346The underlying process creation and management in this module is handled by
347the :class:`Popen` class. It offers a lot of flexibility so that developers
348are able to handle the less common cases not covered by the convenience
349functions.
Georg Brandl116aa622007-08-15 14:28:22 +0000350
351
Gregory P. Smith8edd99d2010-12-14 13:43:30 +0000352.. class:: Popen(args, bufsize=0, executable=None, stdin=None, stdout=None, stderr=None, preexec_fn=None, close_fds=True, shell=False, cwd=None, env=None, universal_newlines=False, startupinfo=None, creationflags=0, restore_signals=True, start_new_session=False, pass_fds=())
Georg Brandl116aa622007-08-15 14:28:22 +0000353
354 Arguments are:
355
Benjamin Petersond18de0e2008-07-31 20:21:46 +0000356 *args* should be a string, or a sequence of program arguments. The program
Benjamin Petersonfa0d7032009-06-01 22:42:33 +0000357 to execute is normally the first item in the args sequence or the string if
358 a string is given, but can be explicitly set by using the *executable*
359 argument. When *executable* is given, the first item in the args sequence
360 is still treated by most programs as the command name, which can then be
361 different from the actual executable name. On Unix, it becomes the display
362 name for the executing program in utilities such as :program:`ps`.
Georg Brandl116aa622007-08-15 14:28:22 +0000363
364 On Unix, with *shell=False* (default): In this case, the Popen class uses
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000365 :meth:`os.execvp` like behavior to execute the child program.
366 *args* should normally be a
R. David Murray5973e4d2010-02-04 16:41:57 +0000367 sequence. If a string is specified for *args*, it will be used as the name
368 or path of the program to execute; this will only work if the program is
369 being given no arguments.
Georg Brandl116aa622007-08-15 14:28:22 +0000370
R. David Murray5973e4d2010-02-04 16:41:57 +0000371 .. note::
372
373 :meth:`shlex.split` can be useful when determining the correct
374 tokenization for *args*, especially in complex cases::
375
376 >>> import shlex, subprocess
R. David Murray73bc75b2010-02-05 16:25:12 +0000377 >>> command_line = input()
R. David Murray5973e4d2010-02-04 16:41:57 +0000378 /bin/vikings -input eggs.txt -output "spam spam.txt" -cmd "echo '$MONEY'"
379 >>> args = shlex.split(command_line)
380 >>> print(args)
381 ['/bin/vikings', '-input', 'eggs.txt', '-output', 'spam spam.txt', '-cmd', "echo '$MONEY'"]
382 >>> p = subprocess.Popen(args) # Success!
383
384 Note in particular that options (such as *-input*) and arguments (such
385 as *eggs.txt*) that are separated by whitespace in the shell go in separate
386 list elements, while arguments that need quoting or backslash escaping when
387 used in the shell (such as filenames containing spaces or the *echo* command
388 shown above) are single list elements.
389
390 On Unix, with *shell=True*: If args is a string, it specifies the command
391 string to execute through the shell. This means that the string must be
392 formatted exactly as it would be when typed at the shell prompt. This
393 includes, for example, quoting or backslash escaping filenames with spaces in
394 them. If *args* is a sequence, the first item specifies the command string, and
395 any additional items will be treated as additional arguments to the shell
396 itself. That is to say, *Popen* does the equivalent of::
397
398 Popen(['/bin/sh', '-c', args[0], args[1], ...])
Georg Brandl116aa622007-08-15 14:28:22 +0000399
R. David Murrayc7399d02010-11-12 00:35:31 +0000400 .. warning::
401
Nick Coghlanc29248f2011-11-08 20:49:23 +1000402 Enabling this option can be a security hazard if combined with untrusted
403 input. See the warning under :ref:`frequently-used-arguments`
404 for details.
R. David Murrayc7399d02010-11-12 00:35:31 +0000405
Eli Bendersky046a7642011-04-15 07:23:26 +0300406 On Windows: the :class:`Popen` class uses CreateProcess() to execute the
407 child program, which operates on strings. If *args* is a sequence, it will
408 be converted to a string in a manner described in
409 :ref:`converting-argument-sequence`.
Georg Brandl116aa622007-08-15 14:28:22 +0000410
411 *bufsize*, if given, has the same meaning as the corresponding argument to the
412 built-in open() function: :const:`0` means unbuffered, :const:`1` means line
413 buffered, any other positive value means use a buffer of (approximately) that
414 size. A negative *bufsize* means to use the system default, which usually means
415 fully buffered. The default value for *bufsize* is :const:`0` (unbuffered).
416
Antoine Pitrou4b876202010-06-02 17:10:49 +0000417 .. note::
418
419 If you experience performance issues, it is recommended that you try to
420 enable buffering by setting *bufsize* to either -1 or a large enough
421 positive value (such as 4096).
422
Georg Brandl116aa622007-08-15 14:28:22 +0000423 The *executable* argument specifies the program to execute. It is very seldom
424 needed: Usually, the program to execute is defined by the *args* argument. If
425 ``shell=True``, the *executable* argument specifies which shell to use. On Unix,
426 the default shell is :file:`/bin/sh`. On Windows, the default shell is
Alexandre Vassalotti260484d2009-07-17 11:43:26 +0000427 specified by the :envvar:`COMSPEC` environment variable. The only reason you
428 would need to specify ``shell=True`` on Windows is where the command you
429 wish to execute is actually built in to the shell, eg ``dir``, ``copy``.
430 You don't need ``shell=True`` to run a batch file, nor to run a console-based
431 executable.
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.
446 (Unix only)
447
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
464 :const:`2` will be closed before the child process is executed. (Unix only).
Gregory P. Smith8edd99d2010-12-14 13:43:30 +0000465 The default varies by platform: Always true on Unix. On Windows it is
466 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
477 *close_fds* to be :const:`True`. (Unix only)
478
479 .. versionadded:: 3.2
480 The *pass_fds* parameter was added.
Georg Brandl116aa622007-08-15 14:28:22 +0000481
482 If *cwd* is not ``None``, the child's current directory will be changed to *cwd*
483 before it is executed. Note that this directory is not considered when
484 searching the executable, so you can't specify the program's path relative to
485 *cwd*.
486
Gregory P. Smithfb94c5f2010-03-14 06:49:55 +0000487 If *restore_signals* is True (the default) all signals that Python has set to
488 SIG_IGN are restored to SIG_DFL in the child process before the exec.
489 Currently this includes the SIGPIPE, SIGXFZ and SIGXFSZ signals.
490 (Unix only)
491
492 .. versionchanged:: 3.2
493 *restore_signals* was added.
494
495 If *start_new_session* is True the setsid() system call will be made in the
496 child process prior to the execution of the subprocess. (Unix only)
497
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
Andrew Svetlov50be4522012-08-13 22:09:04 +0300515 described above in :ref:`frequently-used-arguments`.
Georg Brandl116aa622007-08-15 14:28:22 +0000516
Brian Curtine6242d72011-04-29 22:17:51 -0500517 If given, *startupinfo* will be a :class:`STARTUPINFO` object, which is
518 passed to the underlying ``CreateProcess`` function.
Brian Curtin30401932011-04-29 22:20:57 -0500519 *creationflags*, if given, can be :data:`CREATE_NEW_CONSOLE` or
520 :data:`CREATE_NEW_PROCESS_GROUP`. (Windows only)
Georg Brandl116aa622007-08-15 14:28:22 +0000521
Gregory P. Smith6b657452011-05-11 21:42:08 -0700522 Popen objects are supported as context managers via the :keyword:`with` statement:
523 on exit, standard file descriptors are closed, and the process is waited for.
Brian Curtin79cdb662010-12-03 02:46:02 +0000524 ::
525
526 with Popen(["ifconfig"], stdout=PIPE) as proc:
527 log.write(proc.stdout.read())
528
529 .. versionchanged:: 3.2
530 Added context manager support.
531
Georg Brandl116aa622007-08-15 14:28:22 +0000532
Georg Brandl116aa622007-08-15 14:28:22 +0000533Exceptions
534^^^^^^^^^^
535
536Exceptions raised in the child process, before the new program has started to
537execute, will be re-raised in the parent. Additionally, the exception object
538will have one extra attribute called :attr:`child_traceback`, which is a string
Georg Brandl81675612010-08-26 14:30:56 +0000539containing traceback information from the child's point of view.
Georg Brandl116aa622007-08-15 14:28:22 +0000540
541The most common exception raised is :exc:`OSError`. This occurs, for example,
542when trying to execute a non-existent file. Applications should prepare for
543:exc:`OSError` exceptions.
544
545A :exc:`ValueError` will be raised if :class:`Popen` is called with invalid
546arguments.
547
Nick Coghlanc29248f2011-11-08 20:49:23 +1000548:func:`check_call` and :func:`check_output` will raise
549:exc:`CalledProcessError` if the called process returns a non-zero return
550code.
Georg Brandl116aa622007-08-15 14:28:22 +0000551
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400552All of the functions and methods that accept a *timeout* parameter, such as
553:func:`call` and :meth:`Popen.communicate` will raise :exc:`TimeoutExpired` if
554the timeout expires before the process exits.
555
Ronald Oussorenc1577902011-03-16 10:03:10 -0400556Exceptions defined in this module all inherit from :exc:`SubprocessError`.
Gregory P. Smith54d412e2011-03-14 14:08:43 -0400557
558 .. versionadded:: 3.3
559 The :exc:`SubprocessError` base class was added.
560
Georg Brandl116aa622007-08-15 14:28:22 +0000561
562Security
563^^^^^^^^
564
Nick Coghlanc29248f2011-11-08 20:49:23 +1000565Unlike some other popen functions, this implementation will never call a
566system shell implicitly. This means that all characters, including shell
567metacharacters, can safely be passed to child processes. Obviously, if the
568shell is invoked explicitly, then it is the application's responsibility to
569ensure that all whitespace and metacharacters are quoted appropriately.
Georg Brandl116aa622007-08-15 14:28:22 +0000570
571
572Popen Objects
573-------------
574
575Instances of the :class:`Popen` class have the following methods:
576
577
578.. method:: Popen.poll()
579
Christian Heimes7f044312008-01-06 17:05:40 +0000580 Check if child process has terminated. Set and return :attr:`returncode`
581 attribute.
Georg Brandl116aa622007-08-15 14:28:22 +0000582
583
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400584.. method:: Popen.wait(timeout=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000585
Christian Heimes7f044312008-01-06 17:05:40 +0000586 Wait for child process to terminate. Set and return :attr:`returncode`
587 attribute.
Georg Brandl116aa622007-08-15 14:28:22 +0000588
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400589 If the process does not terminate after *timeout* seconds, raise a
590 :exc:`TimeoutExpired` exception. It is safe to catch this exception and
591 retry the wait.
592
Georg Brandl734e2682008-08-12 08:18:18 +0000593 .. warning::
594
Philip Jenveyb0896842009-12-03 02:29:36 +0000595 This will deadlock when using ``stdout=PIPE`` and/or
596 ``stderr=PIPE`` and the child process generates enough output to
597 a pipe such that it blocks waiting for the OS pipe buffer to
598 accept more data. Use :meth:`communicate` to avoid that.
Georg Brandl734e2682008-08-12 08:18:18 +0000599
Reid Kleckner28f13032011-03-14 12:36:53 -0400600 .. versionchanged:: 3.3
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400601 *timeout* was added.
Georg Brandl116aa622007-08-15 14:28:22 +0000602
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400603
604.. method:: Popen.communicate(input=None, timeout=None)
Georg Brandl116aa622007-08-15 14:28:22 +0000605
606 Interact with process: Send data to stdin. Read data from stdout and stderr,
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400607 until end-of-file is reached. Wait for process to terminate. The optional
Gregory P. Smitha454ef62011-05-22 22:29:49 -0700608 *input* argument should be data to be sent to the child process, or
609 ``None``, if no data should be sent to the child. The type of *input*
610 must be bytes or, if *universal_newlines* was ``True``, a string.
Georg Brandl116aa622007-08-15 14:28:22 +0000611
Georg Brandlaf265f42008-12-07 15:06:20 +0000612 :meth:`communicate` returns a tuple ``(stdoutdata, stderrdata)``.
Georg Brandl116aa622007-08-15 14:28:22 +0000613
Guido van Rossum0d3fb8a2007-11-26 23:23:18 +0000614 Note that if you want to send data to the process's stdin, you need to create
615 the Popen object with ``stdin=PIPE``. Similarly, to get anything other than
616 ``None`` in the result tuple, you need to give ``stdout=PIPE`` and/or
617 ``stderr=PIPE`` too.
618
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400619 If the process does not terminate after *timeout* seconds, a
620 :exc:`TimeoutExpired` exception will be raised. Catching this exception and
621 retrying communication will not lose any output.
622
623 The child process is not killed if the timeout expires, so in order to
624 cleanup properly a well-behaved application should kill the child process and
625 finish communication::
626
627 proc = subprocess.Popen(...)
628 try:
629 outs, errs = proc.communicate(timeout=15)
630 except TimeoutExpired:
631 proc.kill()
632 outs, errs = proc.communicate()
633
Christian Heimes7f044312008-01-06 17:05:40 +0000634 .. note::
Georg Brandl116aa622007-08-15 14:28:22 +0000635
Christian Heimes7f044312008-01-06 17:05:40 +0000636 The data read is buffered in memory, so do not use this method if the data
637 size is large or unlimited.
638
Reid Kleckner28f13032011-03-14 12:36:53 -0400639 .. versionchanged:: 3.3
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400640 *timeout* was added.
641
Georg Brandl116aa622007-08-15 14:28:22 +0000642
Christian Heimesa342c012008-04-20 21:01:16 +0000643.. method:: Popen.send_signal(signal)
644
645 Sends the signal *signal* to the child.
646
647 .. note::
648
Brian Curtineb24d742010-04-12 17:16:38 +0000649 On Windows, SIGTERM is an alias for :meth:`terminate`. CTRL_C_EVENT and
Senthil Kumaran916bd382010-10-15 12:55:19 +0000650 CTRL_BREAK_EVENT can be sent to processes started with a *creationflags*
Brian Curtineb24d742010-04-12 17:16:38 +0000651 parameter which includes `CREATE_NEW_PROCESS_GROUP`.
Christian Heimesa342c012008-04-20 21:01:16 +0000652
Christian Heimesa342c012008-04-20 21:01:16 +0000653
654.. method:: Popen.terminate()
655
656 Stop the child. On Posix OSs the method sends SIGTERM to the
Georg Brandl60203b42010-10-06 10:11:56 +0000657 child. On Windows the Win32 API function :c:func:`TerminateProcess` is called
Christian Heimesa342c012008-04-20 21:01:16 +0000658 to stop the child.
659
Christian Heimesa342c012008-04-20 21:01:16 +0000660
661.. method:: Popen.kill()
662
663 Kills the child. On Posix OSs the function sends SIGKILL to the child.
664 On Windows :meth:`kill` is an alias for :meth:`terminate`.
665
Christian Heimesa342c012008-04-20 21:01:16 +0000666
Georg Brandl116aa622007-08-15 14:28:22 +0000667The following attributes are also available:
668
Georg Brandl734e2682008-08-12 08:18:18 +0000669.. warning::
670
Georg Brandle720c0a2009-04-27 16:20:50 +0000671 Use :meth:`communicate` rather than :attr:`.stdin.write <stdin>`,
672 :attr:`.stdout.read <stdout>` or :attr:`.stderr.read <stderr>` to avoid
673 deadlocks due to any of the other OS pipe buffers filling up and blocking the
674 child process.
Georg Brandl734e2682008-08-12 08:18:18 +0000675
676
Georg Brandl116aa622007-08-15 14:28:22 +0000677.. attribute:: Popen.stdin
678
Antoine Pitrou11cb9612010-09-15 11:11:28 +0000679 If the *stdin* argument was :data:`PIPE`, this attribute is a :term:`file
680 object` that provides input to the child process. Otherwise, it is ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000681
682
683.. attribute:: Popen.stdout
684
Antoine Pitrou11cb9612010-09-15 11:11:28 +0000685 If the *stdout* argument was :data:`PIPE`, this attribute is a :term:`file
686 object` that provides output from the child process. Otherwise, it is ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000687
688
689.. attribute:: Popen.stderr
690
Antoine Pitrou11cb9612010-09-15 11:11:28 +0000691 If the *stderr* argument was :data:`PIPE`, this attribute is a :term:`file
692 object` that provides error output from the child process. Otherwise, it is
Georg Brandlaf265f42008-12-07 15:06:20 +0000693 ``None``.
Georg Brandl116aa622007-08-15 14:28:22 +0000694
695
696.. attribute:: Popen.pid
697
698 The process ID of the child process.
699
Georg Brandl58bfdca2010-03-21 09:50:49 +0000700 Note that if you set the *shell* argument to ``True``, this is the process ID
701 of the spawned shell.
702
Georg Brandl116aa622007-08-15 14:28:22 +0000703
704.. attribute:: Popen.returncode
705
Christian Heimes7f044312008-01-06 17:05:40 +0000706 The child return code, set by :meth:`poll` and :meth:`wait` (and indirectly
707 by :meth:`communicate`). A ``None`` value indicates that the process
708 hasn't terminated yet.
Georg Brandl48310cd2009-01-03 21:18:54 +0000709
Christian Heimes7f044312008-01-06 17:05:40 +0000710 A negative value ``-N`` indicates that the child was terminated by signal
711 ``N`` (Unix only).
Georg Brandl116aa622007-08-15 14:28:22 +0000712
713
Brian Curtine6242d72011-04-29 22:17:51 -0500714Windows Popen Helpers
715---------------------
716
717The :class:`STARTUPINFO` class and following constants are only available
718on Windows.
719
720.. class:: STARTUPINFO()
Brian Curtin73365dd2011-04-29 22:18:33 -0500721
Brian Curtine6242d72011-04-29 22:17:51 -0500722 Partial support of the Windows
723 `STARTUPINFO <http://msdn.microsoft.com/en-us/library/ms686331(v=vs.85).aspx>`__
724 structure is used for :class:`Popen` creation.
725
726 .. attribute:: dwFlags
727
Senthil Kumarana6bac952011-07-04 11:28:30 -0700728 A bit field that determines whether certain :class:`STARTUPINFO`
729 attributes are used when the process creates a window. ::
Brian Curtine6242d72011-04-29 22:17:51 -0500730
731 si = subprocess.STARTUPINFO()
732 si.dwFlags = subprocess.STARTF_USESTDHANDLES | subprocess.STARTF_USESHOWWINDOW
733
734 .. attribute:: hStdInput
735
Senthil Kumarana6bac952011-07-04 11:28:30 -0700736 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
737 is the standard input handle for the process. If
738 :data:`STARTF_USESTDHANDLES` is not specified, the default for standard
739 input is the keyboard buffer.
Brian Curtine6242d72011-04-29 22:17:51 -0500740
741 .. attribute:: hStdOutput
742
Senthil Kumarana6bac952011-07-04 11:28:30 -0700743 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
744 is the standard output handle for the process. Otherwise, this attribute
745 is ignored and the default for standard output is the console window's
Brian Curtine6242d72011-04-29 22:17:51 -0500746 buffer.
747
748 .. attribute:: hStdError
749
Senthil Kumarana6bac952011-07-04 11:28:30 -0700750 If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute
751 is the standard error handle for the process. Otherwise, this attribute is
Brian Curtine6242d72011-04-29 22:17:51 -0500752 ignored and the default for standard error is the console window's buffer.
753
754 .. attribute:: wShowWindow
755
Senthil Kumarana6bac952011-07-04 11:28:30 -0700756 If :attr:`dwFlags` specifies :data:`STARTF_USESHOWWINDOW`, this attribute
Brian Curtine6242d72011-04-29 22:17:51 -0500757 can be any of the values that can be specified in the ``nCmdShow``
758 parameter for the
759 `ShowWindow <http://msdn.microsoft.com/en-us/library/ms633548(v=vs.85).aspx>`__
Senthil Kumarana6bac952011-07-04 11:28:30 -0700760 function, except for ``SW_SHOWDEFAULT``. Otherwise, this attribute is
Brian Curtine6242d72011-04-29 22:17:51 -0500761 ignored.
Brian Curtin73365dd2011-04-29 22:18:33 -0500762
Brian Curtine6242d72011-04-29 22:17:51 -0500763 :data:`SW_HIDE` is provided for this attribute. It is used when
764 :class:`Popen` is called with ``shell=True``.
765
766
767Constants
768^^^^^^^^^
769
770The :mod:`subprocess` module exposes the following constants.
771
772.. data:: STD_INPUT_HANDLE
773
774 The standard input device. Initially, this is the console input buffer,
775 ``CONIN$``.
776
777.. data:: STD_OUTPUT_HANDLE
778
779 The standard output device. Initially, this is the active console screen
780 buffer, ``CONOUT$``.
781
782.. data:: STD_ERROR_HANDLE
783
784 The standard error device. Initially, this is the active console screen
785 buffer, ``CONOUT$``.
786
787.. data:: SW_HIDE
788
789 Hides the window. Another window will be activated.
790
791.. data:: STARTF_USESTDHANDLES
792
793 Specifies that the :attr:`STARTUPINFO.hStdInput`,
Senthil Kumarana6bac952011-07-04 11:28:30 -0700794 :attr:`STARTUPINFO.hStdOutput`, and :attr:`STARTUPINFO.hStdError` attributes
Brian Curtine6242d72011-04-29 22:17:51 -0500795 contain additional information.
796
797.. data:: STARTF_USESHOWWINDOW
798
Senthil Kumarana6bac952011-07-04 11:28:30 -0700799 Specifies that the :attr:`STARTUPINFO.wShowWindow` attribute contains
Brian Curtine6242d72011-04-29 22:17:51 -0500800 additional information.
801
802.. data:: CREATE_NEW_CONSOLE
803
804 The new process has a new console, instead of inheriting its parent's
805 console (the default).
Brian Curtin73365dd2011-04-29 22:18:33 -0500806
Brian Curtine6242d72011-04-29 22:17:51 -0500807 This flag is always set when :class:`Popen` is created with ``shell=True``.
808
Brian Curtin30401932011-04-29 22:20:57 -0500809.. data:: CREATE_NEW_PROCESS_GROUP
810
811 A :class:`Popen` ``creationflags`` parameter to specify that a new process
812 group will be created. This flag is necessary for using :func:`os.kill`
813 on the subprocess.
814
815 This flag is ignored if :data:`CREATE_NEW_CONSOLE` is specified.
816
Brian Curtine6242d72011-04-29 22:17:51 -0500817
Benjamin Petersondcf97b92008-07-02 17:30:14 +0000818.. _subprocess-replacements:
819
Georg Brandl116aa622007-08-15 14:28:22 +0000820Replacing Older Functions with the subprocess Module
821----------------------------------------------------
822
Nick Coghlanc29248f2011-11-08 20:49:23 +1000823In this section, "a becomes b" means that b can be used as a replacement for a.
Georg Brandl116aa622007-08-15 14:28:22 +0000824
825.. note::
826
Nick Coghlanc29248f2011-11-08 20:49:23 +1000827 All "a" functions in this section fail (more or less) silently if the
828 executed program cannot be found; the "b" replacements raise :exc:`OSError`
829 instead.
Georg Brandl116aa622007-08-15 14:28:22 +0000830
Nick Coghlanc29248f2011-11-08 20:49:23 +1000831 In addition, the replacements using :func:`check_output` will fail with a
832 :exc:`CalledProcessError` if the requested operation produces a non-zero
833 return code. The output is still available as the ``output`` attribute of
834 the raised exception.
835
836In the following examples, we assume that the relevant functions have already
837been imported from the subprocess module.
Georg Brandl116aa622007-08-15 14:28:22 +0000838
839
840Replacing /bin/sh shell backquote
841^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
842
843::
844
845 output=`mycmd myarg`
Nick Coghlanc29248f2011-11-08 20:49:23 +1000846 # becomes
847 output = check_output(["mycmd", "myarg"])
Georg Brandl116aa622007-08-15 14:28:22 +0000848
849
Benjamin Petersonf10a79a2008-10-11 00:49:57 +0000850Replacing shell pipeline
851^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000852
853::
854
855 output=`dmesg | grep hda`
Nick Coghlanc29248f2011-11-08 20:49:23 +1000856 # becomes
Georg Brandl116aa622007-08-15 14:28:22 +0000857 p1 = Popen(["dmesg"], stdout=PIPE)
858 p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE)
Gregory P. Smithe09d2f12011-02-05 21:47:25 +0000859 p1.stdout.close() # Allow p1 to receive a SIGPIPE if p2 exits.
Georg Brandl116aa622007-08-15 14:28:22 +0000860 output = p2.communicate()[0]
861
Gregory P. Smithe09d2f12011-02-05 21:47:25 +0000862The p1.stdout.close() call after starting the p2 is important in order for p1
863to receive a SIGPIPE if p2 exits before p1.
Georg Brandl116aa622007-08-15 14:28:22 +0000864
Nick Coghlanc29248f2011-11-08 20:49:23 +1000865Alternatively, for trusted input, the shell's own pipeline support may still
R David Murray28b8b942012-04-03 08:46:48 -0400866be used directly::
Nick Coghlanc29248f2011-11-08 20:49:23 +1000867
868 output=`dmesg | grep hda`
869 # becomes
870 output=check_output("dmesg | grep hda", shell=True)
871
872
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000873Replacing :func:`os.system`
874^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000875
876::
877
878 sts = os.system("mycmd" + " myarg")
Nick Coghlanc29248f2011-11-08 20:49:23 +1000879 # becomes
880 sts = call("mycmd" + " myarg", shell=True)
Georg Brandl116aa622007-08-15 14:28:22 +0000881
882Notes:
883
884* Calling the program through the shell is usually not required.
885
Georg Brandl116aa622007-08-15 14:28:22 +0000886A more realistic example would look like this::
887
888 try:
889 retcode = call("mycmd" + " myarg", shell=True)
890 if retcode < 0:
Collin Winterc79461b2007-09-01 23:34:30 +0000891 print("Child was terminated by signal", -retcode, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +0000892 else:
Collin Winterc79461b2007-09-01 23:34:30 +0000893 print("Child returned", retcode, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +0000894 except OSError as e:
Collin Winterc79461b2007-09-01 23:34:30 +0000895 print("Execution failed:", e, file=sys.stderr)
Georg Brandl116aa622007-08-15 14:28:22 +0000896
897
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000898Replacing the :func:`os.spawn <os.spawnl>` family
899^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000900
901P_NOWAIT example::
902
903 pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg")
904 ==>
905 pid = Popen(["/bin/mycmd", "myarg"]).pid
906
907P_WAIT example::
908
909 retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg")
910 ==>
911 retcode = call(["/bin/mycmd", "myarg"])
912
913Vector example::
914
915 os.spawnvp(os.P_NOWAIT, path, args)
916 ==>
917 Popen([path] + args[1:])
918
919Environment example::
920
921 os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env)
922 ==>
923 Popen(["/bin/mycmd", "myarg"], env={"PATH": "/usr/bin"})
924
925
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000926
927Replacing :func:`os.popen`, :func:`os.popen2`, :func:`os.popen3`
928^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Georg Brandl116aa622007-08-15 14:28:22 +0000929
930::
931
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000932 (child_stdin, child_stdout) = os.popen2(cmd, mode, bufsize)
Georg Brandl116aa622007-08-15 14:28:22 +0000933 ==>
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000934 p = Popen(cmd, shell=True, bufsize=bufsize,
935 stdin=PIPE, stdout=PIPE, close_fds=True)
936 (child_stdin, child_stdout) = (p.stdin, p.stdout)
Georg Brandl116aa622007-08-15 14:28:22 +0000937
938::
939
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000940 (child_stdin,
941 child_stdout,
942 child_stderr) = os.popen3(cmd, mode, bufsize)
Georg Brandl116aa622007-08-15 14:28:22 +0000943 ==>
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000944 p = Popen(cmd, shell=True, bufsize=bufsize,
945 stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True)
946 (child_stdin,
947 child_stdout,
948 child_stderr) = (p.stdin, p.stdout, p.stderr)
949
950::
951
952 (child_stdin, child_stdout_and_stderr) = os.popen4(cmd, mode, bufsize)
953 ==>
954 p = Popen(cmd, shell=True, bufsize=bufsize,
955 stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True)
956 (child_stdin, child_stdout_and_stderr) = (p.stdin, p.stdout)
957
958Return code handling translates as follows::
959
960 pipe = os.popen(cmd, 'w')
961 ...
962 rc = pipe.close()
Stefan Krahfc9e08d2010-07-14 10:16:11 +0000963 if rc is not None and rc >> 8:
Ezio Melotti985e24d2009-09-13 07:54:02 +0000964 print("There were some errors")
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000965 ==>
966 process = Popen(cmd, 'w', stdin=PIPE)
967 ...
968 process.stdin.close()
969 if process.wait() != 0:
Ezio Melotti985e24d2009-09-13 07:54:02 +0000970 print("There were some errors")
Benjamin Peterson87c8d872009-06-11 22:54:11 +0000971
972
973Replacing functions from the :mod:`popen2` module
974^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
975
976.. note::
977
978 If the cmd argument to popen2 functions is a string, the command is executed
979 through /bin/sh. If it is a list, the command is directly executed.
980
981::
982
983 (child_stdout, child_stdin) = popen2.popen2("somestring", bufsize, mode)
984 ==>
985 p = Popen(["somestring"], shell=True, bufsize=bufsize,
986 stdin=PIPE, stdout=PIPE, close_fds=True)
987 (child_stdout, child_stdin) = (p.stdout, p.stdin)
988
989::
990
991 (child_stdout, child_stdin) = popen2.popen2(["mycmd", "myarg"], bufsize, mode)
992 ==>
993 p = Popen(["mycmd", "myarg"], bufsize=bufsize,
994 stdin=PIPE, stdout=PIPE, close_fds=True)
995 (child_stdout, child_stdin) = (p.stdout, p.stdin)
996
997:class:`popen2.Popen3` and :class:`popen2.Popen4` basically work as
998:class:`subprocess.Popen`, except that:
999
1000* :class:`Popen` raises an exception if the execution fails.
1001
1002* the *capturestderr* argument is replaced with the *stderr* argument.
1003
1004* ``stdin=PIPE`` and ``stdout=PIPE`` must be specified.
1005
1006* popen2 closes all file descriptors by default, but you have to specify
Gregory P. Smithf5604852010-12-13 06:45:02 +00001007 ``close_fds=True`` with :class:`Popen` to guarantee this behavior on
1008 all platforms or past Python versions.
Eli Bendersky046a7642011-04-15 07:23:26 +03001009
Nick Coghlanc29248f2011-11-08 20:49:23 +10001010
Nick Coghlanc29248f2011-11-08 20:49:23 +10001011Legacy Shell Invocation Functions
Nick Coghlan32e4a582011-11-08 21:50:58 +10001012---------------------------------
Nick Coghlanc29248f2011-11-08 20:49:23 +10001013
1014This module also provides the following legacy functions from the 2.x
1015``commands`` module. These operations implicitly invoke the system shell and
1016none of the guarantees described above regarding security and exception
1017handling consistency are valid for these functions.
1018
1019.. function:: getstatusoutput(cmd)
1020
1021 Return ``(status, output)`` of executing *cmd* in a shell.
1022
1023 Execute the string *cmd* in a shell with :func:`os.popen` and return a 2-tuple
1024 ``(status, output)``. *cmd* is actually run as ``{ cmd ; } 2>&1``, so that the
1025 returned output will contain output or error messages. A trailing newline is
1026 stripped from the output. The exit status for the command can be interpreted
1027 according to the rules for the C function :c:func:`wait`. Example::
1028
1029 >>> subprocess.getstatusoutput('ls /bin/ls')
1030 (0, '/bin/ls')
1031 >>> subprocess.getstatusoutput('cat /bin/junk')
1032 (256, 'cat: /bin/junk: No such file or directory')
1033 >>> subprocess.getstatusoutput('/bin/junk')
1034 (256, 'sh: /bin/junk: not found')
1035
1036 Availability: UNIX.
1037
1038
1039.. function:: getoutput(cmd)
1040
1041 Return output (stdout and stderr) of executing *cmd* in a shell.
1042
1043 Like :func:`getstatusoutput`, except the exit status is ignored and the return
1044 value is a string containing the command's output. Example::
1045
1046 >>> subprocess.getoutput('ls /bin/ls')
1047 '/bin/ls'
1048
1049 Availability: UNIX.
1050
Nick Coghlan32e4a582011-11-08 21:50:58 +10001051
Eli Bendersky046a7642011-04-15 07:23:26 +03001052Notes
1053-----
1054
1055.. _converting-argument-sequence:
1056
1057Converting an argument sequence to a string on Windows
1058^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
1059
1060On Windows, an *args* sequence is converted to a string that can be parsed
1061using the following rules (which correspond to the rules used by the MS C
1062runtime):
1063
10641. Arguments are delimited by white space, which is either a
1065 space or a tab.
1066
10672. A string surrounded by double quotation marks is
1068 interpreted as a single argument, regardless of white space
1069 contained within. A quoted string can be embedded in an
1070 argument.
1071
10723. A double quotation mark preceded by a backslash is
1073 interpreted as a literal double quotation mark.
1074
10754. Backslashes are interpreted literally, unless they
1076 immediately precede a double quotation mark.
1077
10785. If backslashes immediately precede a double quotation mark,
1079 every pair of backslashes is interpreted as a literal
1080 backslash. If the number of backslashes is odd, the last
1081 backslash escapes the next double quotation mark as
1082 described in rule 3.
1083
Eli Benderskyd2112312011-04-15 07:26:28 +03001084
Éric Araujo9bce3112011-07-27 18:29:31 +02001085.. seealso::
1086
1087 :mod:`shlex`
1088 Module which provides function to parse and escape command lines.