Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | :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 Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 10 | The :mod:`subprocess` module allows you to spawn new processes, connect to their |
| 11 | input/output/error pipes, and obtain their return codes. This module intends to |
| 12 | replace several other, older modules and functions, such as:: |
| 13 | |
| 14 | os.system |
| 15 | os.spawn* |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 16 | |
| 17 | Information about how the :mod:`subprocess` module can be used to replace these |
| 18 | modules and functions can be found in the following sections. |
| 19 | |
Benjamin Peterson | 4118174 | 2008-07-02 20:22:54 +0000 | [diff] [blame] | 20 | .. seealso:: |
| 21 | |
| 22 | :pep:`324` -- PEP proposing the subprocess module |
| 23 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 24 | |
| 25 | Using the subprocess Module |
| 26 | --------------------------- |
| 27 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 28 | The recommended approach to invoking subprocesses is to use the following |
| 29 | convenience functions for all use cases they can handle. For more advanced |
| 30 | use cases, the underlying :class:`Popen` interface can be used directly. |
| 31 | |
| 32 | |
Nick Coghlan | 217f05b | 2011-11-08 22:11:21 +1000 | [diff] [blame] | 33 | .. function:: call(args, *, stdin=None, stdout=None, stderr=None, shell=False, timeout=None) |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 34 | |
| 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 Coghlan | 217f05b | 2011-11-08 22:11:21 +1000 | [diff] [blame] | 39 | 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 Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 48 | |
| 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 Coghlan | 217f05b | 2011-11-08 22:11:21 +1000 | [diff] [blame] | 70 | .. versionchanged:: 3.3 |
| 71 | *timeout* was added. |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 72 | |
Nick Coghlan | 217f05b | 2011-11-08 22:11:21 +1000 | [diff] [blame] | 73 | |
| 74 | .. function:: check_call(args, *, stdin=None, stdout=None, stderr=None, shell=False, timeout=None) |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 75 | |
| 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 Coghlan | 217f05b | 2011-11-08 22:11:21 +1000 | [diff] [blame] | 82 | 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 Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 91 | |
| 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 Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 102 | .. 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 Coghlan | 217f05b | 2011-11-08 22:11:21 +1000 | [diff] [blame] | 115 | .. versionchanged:: 3.3 |
| 116 | *timeout* was added. |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 117 | |
Nick Coghlan | 217f05b | 2011-11-08 22:11:21 +1000 | [diff] [blame] | 118 | |
| 119 | .. function:: check_output(args, *, stdin=None, stderr=None, shell=False, universal_newlines=False, timeout=None) |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 120 | |
| 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 Coghlan | 217f05b | 2011-11-08 22:11:21 +1000 | [diff] [blame] | 129 | 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 Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 140 | |
| 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 Svetlov | 50be452 | 2012-08-13 22:09:04 +0300 | [diff] [blame] | 159 | ``True`` as described below in :ref:`frequently-used-arguments`. |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 160 | |
| 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 Coghlan | 217f05b | 2011-11-08 22:11:21 +1000 | [diff] [blame] | 170 | .. versionadded:: 3.1 |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 171 | |
| 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 Coghlan | 217f05b | 2011-11-08 22:11:21 +1000 | [diff] [blame] | 184 | .. 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 Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 196 | |
| 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 Svetlov | b4a09ab | 2012-08-09 15:11:45 +0300 | [diff] [blame] | 211 | .. 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 Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 259 | .. _frequently-used-arguments: |
| 260 | |
| 261 | Frequently Used Arguments |
| 262 | ^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 263 | |
| 264 | To support a wide variety of use cases, the :class:`Popen` constructor (and |
| 265 | the convenience functions) accept a large number of optional arguments. For |
| 266 | most typical use cases, many of these arguments can be safely left at their |
| 267 | default 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 Coghlan | 217f05b | 2011-11-08 22:11:21 +1000 | [diff] [blame] | 279 | 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 Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 287 | |
R David Murray | 1b00f25 | 2012-08-15 10:43:58 -0400 | [diff] [blame] | 288 | .. index:: |
| 289 | single: universal newlines; subprocess module |
| 290 | |
R David Murray | 0689ce4 | 2012-08-15 11:13:31 -0400 | [diff] [blame] | 291 | 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 Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 300 | |
Andrew Svetlov | 50be452 | 2012-08-13 22:09:04 +0300 | [diff] [blame] | 301 | .. note:: |
| 302 | |
| 303 | The *universal_newlines* feature is supported only if Python is built |
| 304 | with universal newline support (the default). Also, the newlines |
| 305 | attribute of the file objects :attr:`Popen.stdin`, :attr:`Popen.stdout` |
| 306 | and :attr:`Popen.stderr` are not updated by the |
| 307 | :meth:`Popen.communicate` method. |
| 308 | |
| 309 | If *shell* is ``True``, the specified command will be executed through |
Ezio Melotti | 186d523 | 2012-09-15 08:34:08 +0300 | [diff] [blame] | 310 | the shell. This can be useful if you are using Python primarily for the |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 311 | enhanced control flow it offers over most system shells and still want |
Ezio Melotti | 186d523 | 2012-09-15 08:34:08 +0300 | [diff] [blame] | 312 | convenient access to other shell features such as shell pipes, filename |
| 313 | wildcards, environment variable expansion, and expansion of ``~`` to a |
| 314 | user's home directory. However, note that Python itself offers |
| 315 | implementations of many shell-like features (in particular, :mod:`glob`, |
| 316 | :mod:`fnmatch`, :func:`os.walk`, :func:`os.path.expandvars`, |
| 317 | :func:`os.path.expanduser`, and :mod:`shutil`). |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 318 | |
Andrew Svetlov | 4805fa8 | 2012-08-13 22:11:14 +0300 | [diff] [blame] | 319 | .. versionchanged:: 3.3 |
| 320 | When *universal_newlines* is ``True``, the class uses the encoding |
| 321 | :func:`locale.getpreferredencoding(False) <locale.getpreferredencoding>` |
| 322 | instead of ``locale.getpreferredencoding()``. See the |
| 323 | :class:`io.TextIOWrapper` class for more information on this change. |
| 324 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 325 | .. warning:: |
| 326 | |
| 327 | Executing shell commands that incorporate unsanitized input from an |
| 328 | untrusted source makes a program vulnerable to `shell injection |
| 329 | <http://en.wikipedia.org/wiki/Shell_injection#Shell_injection>`_, |
| 330 | a serious security flaw which can result in arbitrary command execution. |
Chris Jerdonek | cc32a68 | 2012-10-10 22:52:22 -0700 | [diff] [blame] | 331 | For this reason, the use of ``shell=True`` is **strongly discouraged** |
| 332 | in cases where the command string is constructed from external input:: |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 333 | |
| 334 | >>> from subprocess import call |
| 335 | >>> filename = input("What file would you like to display?\n") |
| 336 | What file would you like to display? |
| 337 | non_existent; rm -rf / # |
| 338 | >>> call("cat " + filename, shell=True) # Uh-oh. This will end badly... |
| 339 | |
| 340 | ``shell=False`` disables all shell based features, but does not suffer |
| 341 | from this vulnerability; see the Note in the :class:`Popen` constructor |
| 342 | documentation for helpful hints in getting ``shell=False`` to work. |
| 343 | |
Andrew Svetlov | c2415eb | 2012-10-28 11:42:26 +0200 | [diff] [blame^] | 344 | When using ``shell=True``, :func:`shlex.quote` can be used to properly |
| 345 | escape whitespace and shell metacharacters in strings that are going to |
| 346 | be used to construct shell commands. |
| 347 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 348 | These options, along with all of the other options, are described in more |
| 349 | detail in the :class:`Popen` constructor documentation. |
| 350 | |
| 351 | |
Sandro Tosi | 1526ad1 | 2011-12-25 11:27:37 +0100 | [diff] [blame] | 352 | Popen Constructor |
Sandro Tosi | 3e6c814 | 2011-12-25 17:14:11 +0100 | [diff] [blame] | 353 | ^^^^^^^^^^^^^^^^^ |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 354 | |
| 355 | The underlying process creation and management in this module is handled by |
| 356 | the :class:`Popen` class. It offers a lot of flexibility so that developers |
| 357 | are able to handle the less common cases not covered by the convenience |
| 358 | functions. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 359 | |
| 360 | |
Chris Jerdonek | 4a4a02b | 2012-10-10 17:46:18 -0700 | [diff] [blame] | 361 | .. class:: Popen(args, bufsize=0, executable=None, stdin=None, stdout=None, \ |
| 362 | stderr=None, preexec_fn=None, close_fds=True, shell=False, \ |
| 363 | cwd=None, env=None, universal_newlines=False, \ |
| 364 | startupinfo=None, creationflags=0, restore_signals=True, \ |
| 365 | start_new_session=False, pass_fds=()) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 366 | |
Chris Jerdonek | 4a4a02b | 2012-10-10 17:46:18 -0700 | [diff] [blame] | 367 | Execute a child program in a new process. On Unix, the class uses |
| 368 | :meth:`os.execvp`-like behavior to execute the child program. On Windows, |
| 369 | the class uses the Windows ``CreateProcess()`` function. The arguments to |
| 370 | :class:`Popen` are as follows. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 371 | |
Chris Jerdonek | 470ee39 | 2012-10-08 23:06:57 -0700 | [diff] [blame] | 372 | *args* should be a sequence of program arguments or else a single string. |
| 373 | By default, the program to execute is the first item in *args* if *args* is |
Chris Jerdonek | 4a4a02b | 2012-10-10 17:46:18 -0700 | [diff] [blame] | 374 | a sequence. If *args* is a string, the interpretation is |
| 375 | platform-dependent and described below. See the *shell* and *executable* |
| 376 | arguments for additional differences from the default behavior. Unless |
| 377 | otherwise stated, it is recommended to pass *args* as a sequence. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 378 | |
Chris Jerdonek | 4a4a02b | 2012-10-10 17:46:18 -0700 | [diff] [blame] | 379 | On Unix, if *args* is a string, the string is interpreted as the name or |
| 380 | path of the program to execute. However, this can only be done if not |
| 381 | passing arguments to the program. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 382 | |
R. David Murray | 5973e4d | 2010-02-04 16:41:57 +0000 | [diff] [blame] | 383 | .. note:: |
| 384 | |
| 385 | :meth:`shlex.split` can be useful when determining the correct |
| 386 | tokenization for *args*, especially in complex cases:: |
| 387 | |
| 388 | >>> import shlex, subprocess |
R. David Murray | 73bc75b | 2010-02-05 16:25:12 +0000 | [diff] [blame] | 389 | >>> command_line = input() |
R. David Murray | 5973e4d | 2010-02-04 16:41:57 +0000 | [diff] [blame] | 390 | /bin/vikings -input eggs.txt -output "spam spam.txt" -cmd "echo '$MONEY'" |
| 391 | >>> args = shlex.split(command_line) |
| 392 | >>> print(args) |
| 393 | ['/bin/vikings', '-input', 'eggs.txt', '-output', 'spam spam.txt', '-cmd', "echo '$MONEY'"] |
| 394 | >>> p = subprocess.Popen(args) # Success! |
| 395 | |
| 396 | Note in particular that options (such as *-input*) and arguments (such |
| 397 | as *eggs.txt*) that are separated by whitespace in the shell go in separate |
| 398 | list elements, while arguments that need quoting or backslash escaping when |
| 399 | used in the shell (such as filenames containing spaces or the *echo* command |
| 400 | shown above) are single list elements. |
| 401 | |
Chris Jerdonek | 4a4a02b | 2012-10-10 17:46:18 -0700 | [diff] [blame] | 402 | On Windows, if *args* is a sequence, it will be converted to a string in a |
| 403 | manner described in :ref:`converting-argument-sequence`. This is because |
| 404 | the underlying ``CreateProcess()`` operates on strings. |
Chris Jerdonek | 470ee39 | 2012-10-08 23:06:57 -0700 | [diff] [blame] | 405 | |
| 406 | The *shell* argument (which defaults to *False*) specifies whether to use |
Chris Jerdonek | 4a4a02b | 2012-10-10 17:46:18 -0700 | [diff] [blame] | 407 | the shell as the program to execute. If *shell* is *True*, it is |
| 408 | recommended to pass *args* as a string rather than as a sequence. |
Chris Jerdonek | 470ee39 | 2012-10-08 23:06:57 -0700 | [diff] [blame] | 409 | |
| 410 | On Unix with ``shell=True``, the shell defaults to :file:`/bin/sh`. If |
| 411 | *args* is a string, the string specifies the command |
| 412 | to execute through the shell. This means that the string must be |
R. David Murray | 5973e4d | 2010-02-04 16:41:57 +0000 | [diff] [blame] | 413 | formatted exactly as it would be when typed at the shell prompt. This |
| 414 | includes, for example, quoting or backslash escaping filenames with spaces in |
| 415 | them. If *args* is a sequence, the first item specifies the command string, and |
| 416 | any additional items will be treated as additional arguments to the shell |
Chris Jerdonek | 470ee39 | 2012-10-08 23:06:57 -0700 | [diff] [blame] | 417 | itself. That is to say, :class:`Popen` does the equivalent of:: |
R. David Murray | 5973e4d | 2010-02-04 16:41:57 +0000 | [diff] [blame] | 418 | |
| 419 | Popen(['/bin/sh', '-c', args[0], args[1], ...]) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 420 | |
Chris Jerdonek | 470ee39 | 2012-10-08 23:06:57 -0700 | [diff] [blame] | 421 | On Windows with ``shell=True``, the :envvar:`COMSPEC` environment variable |
| 422 | specifies the default shell. The only time you need to specify |
| 423 | ``shell=True`` on Windows is when the command you wish to execute is built |
| 424 | into the shell (e.g. :command:`dir` or :command:`copy`). You do not need |
| 425 | ``shell=True`` to run a batch file or console-based executable. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 426 | |
Chris Jerdonek | cc32a68 | 2012-10-10 22:52:22 -0700 | [diff] [blame] | 427 | .. warning:: |
| 428 | |
| 429 | Passing ``shell=True`` can be a security hazard if combined with |
| 430 | untrusted input. See the warning under :ref:`frequently-used-arguments` |
| 431 | for details. |
| 432 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 433 | *bufsize*, if given, has the same meaning as the corresponding argument to the |
| 434 | built-in open() function: :const:`0` means unbuffered, :const:`1` means line |
| 435 | buffered, any other positive value means use a buffer of (approximately) that |
| 436 | size. A negative *bufsize* means to use the system default, which usually means |
| 437 | fully buffered. The default value for *bufsize* is :const:`0` (unbuffered). |
| 438 | |
Antoine Pitrou | 4b87620 | 2010-06-02 17:10:49 +0000 | [diff] [blame] | 439 | .. note:: |
| 440 | |
| 441 | If you experience performance issues, it is recommended that you try to |
| 442 | enable buffering by setting *bufsize* to either -1 or a large enough |
| 443 | positive value (such as 4096). |
| 444 | |
Chris Jerdonek | 470ee39 | 2012-10-08 23:06:57 -0700 | [diff] [blame] | 445 | The *executable* argument specifies a replacement program to execute. It |
| 446 | is very seldom needed. When ``shell=False``, *executable* replaces the |
Chris Jerdonek | 4a4a02b | 2012-10-10 17:46:18 -0700 | [diff] [blame] | 447 | program to execute specified by *args*. However, the original *args* is |
| 448 | still passed to the program. Most programs treat the program specified |
| 449 | by *args* as the command name, which can then be different from the program |
| 450 | actually executed. On Unix, the *args* name |
Chris Jerdonek | 470ee39 | 2012-10-08 23:06:57 -0700 | [diff] [blame] | 451 | becomes the display name for the executable in utilities such as |
| 452 | :program:`ps`. If ``shell=True``, on Unix the *executable* argument |
| 453 | specifies a replacement shell for the default :file:`/bin/sh`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 454 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 455 | *stdin*, *stdout* and *stderr* specify the executed program's standard input, |
Georg Brandl | af265f4 | 2008-12-07 15:06:20 +0000 | [diff] [blame] | 456 | standard output and standard error file handles, respectively. Valid values |
Ross Lagerwall | ba102ec | 2011-03-16 18:40:25 +0200 | [diff] [blame] | 457 | are :data:`PIPE`, :data:`DEVNULL`, an existing file descriptor (a positive |
| 458 | integer), an existing :term:`file object`, and ``None``. :data:`PIPE` |
| 459 | indicates that a new pipe to the child should be created. :data:`DEVNULL` |
Nick Coghlan | 217f05b | 2011-11-08 22:11:21 +1000 | [diff] [blame] | 460 | indicates that the special file :data:`os.devnull` will be used. With the |
| 461 | default settings of ``None``, no redirection will occur; the child's file |
| 462 | handles will be inherited from the parent. Additionally, *stderr* can be |
| 463 | :data:`STDOUT`, which indicates that the stderr data from the applications |
| 464 | should be captured into the same file handle as for stdout. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 465 | |
| 466 | If *preexec_fn* is set to a callable object, this object will be called in the |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 467 | child process just before the child is executed. |
| 468 | (Unix only) |
| 469 | |
| 470 | .. warning:: |
| 471 | |
| 472 | The *preexec_fn* parameter is not safe to use in the presence of threads |
| 473 | in your application. The child process could deadlock before exec is |
| 474 | called. |
| 475 | If you must use it, keep it trivial! Minimize the number of libraries |
| 476 | you call into. |
| 477 | |
| 478 | .. note:: |
| 479 | |
| 480 | If you need to modify the environment for the child use the *env* |
| 481 | parameter rather than doing it in a *preexec_fn*. |
| 482 | The *start_new_session* parameter can take the place of a previously |
| 483 | common use of *preexec_fn* to call os.setsid() in the child. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 484 | |
| 485 | If *close_fds* is true, all file descriptors except :const:`0`, :const:`1` and |
| 486 | :const:`2` will be closed before the child process is executed. (Unix only). |
Gregory P. Smith | 8edd99d | 2010-12-14 13:43:30 +0000 | [diff] [blame] | 487 | The default varies by platform: Always true on Unix. On Windows it is |
| 488 | true when *stdin*/*stdout*/*stderr* are :const:`None`, false otherwise. |
Gregory P. Smith | d23047b | 2010-12-04 09:10:44 +0000 | [diff] [blame] | 489 | On Windows, if *close_fds* is true then no handles will be inherited by the |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 490 | child process. Note that on Windows, you cannot set *close_fds* to true and |
| 491 | also redirect the standard handles by setting *stdin*, *stdout* or *stderr*. |
| 492 | |
Gregory P. Smith | 8edd99d | 2010-12-14 13:43:30 +0000 | [diff] [blame] | 493 | .. versionchanged:: 3.2 |
| 494 | The default for *close_fds* was changed from :const:`False` to |
| 495 | what is described above. |
| 496 | |
| 497 | *pass_fds* is an optional sequence of file descriptors to keep open |
| 498 | between the parent and child. Providing any *pass_fds* forces |
| 499 | *close_fds* to be :const:`True`. (Unix only) |
| 500 | |
| 501 | .. versionadded:: 3.2 |
| 502 | The *pass_fds* parameter was added. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 503 | |
Chris Jerdonek | ec3ea94 | 2012-09-30 00:10:28 -0700 | [diff] [blame] | 504 | If *cwd* is not ``None``, the function changes the working directory to |
| 505 | *cwd* before executing the child. In particular, the function looks for |
| 506 | *executable* (or for the first item in *args*) relative to *cwd* if the |
| 507 | executable path is a relative path. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 508 | |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 509 | If *restore_signals* is True (the default) all signals that Python has set to |
| 510 | SIG_IGN are restored to SIG_DFL in the child process before the exec. |
| 511 | Currently this includes the SIGPIPE, SIGXFZ and SIGXFSZ signals. |
| 512 | (Unix only) |
| 513 | |
| 514 | .. versionchanged:: 3.2 |
| 515 | *restore_signals* was added. |
| 516 | |
| 517 | If *start_new_session* is True the setsid() system call will be made in the |
| 518 | child process prior to the execution of the subprocess. (Unix only) |
| 519 | |
| 520 | .. versionchanged:: 3.2 |
| 521 | *start_new_session* was added. |
| 522 | |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 523 | If *env* is not ``None``, it must be a mapping that defines the environment |
Gregory P. Smith | fb94c5f | 2010-03-14 06:49:55 +0000 | [diff] [blame] | 524 | variables for the new process; these are used instead of the default |
| 525 | behavior of inheriting the current process' environment. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 526 | |
R. David Murray | 1055e89 | 2009-04-16 18:15:32 +0000 | [diff] [blame] | 527 | .. note:: |
R. David Murray | f4ac149 | 2009-04-15 22:35:15 +0000 | [diff] [blame] | 528 | |
Georg Brandl | 2708f3a | 2009-12-20 14:38:23 +0000 | [diff] [blame] | 529 | If specified, *env* must provide any variables required for the program to |
| 530 | execute. On Windows, in order to run a `side-by-side assembly`_ the |
| 531 | specified *env* **must** include a valid :envvar:`SystemRoot`. |
R. David Murray | f4ac149 | 2009-04-15 22:35:15 +0000 | [diff] [blame] | 532 | |
R. David Murray | 1055e89 | 2009-04-16 18:15:32 +0000 | [diff] [blame] | 533 | .. _side-by-side assembly: http://en.wikipedia.org/wiki/Side-by-Side_Assembly |
| 534 | |
Andrew Svetlov | 50be452 | 2012-08-13 22:09:04 +0300 | [diff] [blame] | 535 | If *universal_newlines* is ``True``, the file objects *stdin*, *stdout* |
R David Murray | 1b00f25 | 2012-08-15 10:43:58 -0400 | [diff] [blame] | 536 | and *stderr* are opened as text streams in universal newlines mode, as |
Andrew Svetlov | 50be452 | 2012-08-13 22:09:04 +0300 | [diff] [blame] | 537 | described above in :ref:`frequently-used-arguments`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 538 | |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 539 | If given, *startupinfo* will be a :class:`STARTUPINFO` object, which is |
| 540 | passed to the underlying ``CreateProcess`` function. |
Brian Curtin | 3040193 | 2011-04-29 22:20:57 -0500 | [diff] [blame] | 541 | *creationflags*, if given, can be :data:`CREATE_NEW_CONSOLE` or |
| 542 | :data:`CREATE_NEW_PROCESS_GROUP`. (Windows only) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 543 | |
Gregory P. Smith | 6b65745 | 2011-05-11 21:42:08 -0700 | [diff] [blame] | 544 | Popen objects are supported as context managers via the :keyword:`with` statement: |
| 545 | on exit, standard file descriptors are closed, and the process is waited for. |
Brian Curtin | 79cdb66 | 2010-12-03 02:46:02 +0000 | [diff] [blame] | 546 | :: |
| 547 | |
| 548 | with Popen(["ifconfig"], stdout=PIPE) as proc: |
| 549 | log.write(proc.stdout.read()) |
| 550 | |
| 551 | .. versionchanged:: 3.2 |
| 552 | Added context manager support. |
| 553 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 554 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 555 | Exceptions |
| 556 | ^^^^^^^^^^ |
| 557 | |
| 558 | Exceptions raised in the child process, before the new program has started to |
| 559 | execute, will be re-raised in the parent. Additionally, the exception object |
| 560 | will have one extra attribute called :attr:`child_traceback`, which is a string |
Georg Brandl | 8167561 | 2010-08-26 14:30:56 +0000 | [diff] [blame] | 561 | containing traceback information from the child's point of view. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 562 | |
| 563 | The most common exception raised is :exc:`OSError`. This occurs, for example, |
| 564 | when trying to execute a non-existent file. Applications should prepare for |
| 565 | :exc:`OSError` exceptions. |
| 566 | |
| 567 | A :exc:`ValueError` will be raised if :class:`Popen` is called with invalid |
| 568 | arguments. |
| 569 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 570 | :func:`check_call` and :func:`check_output` will raise |
| 571 | :exc:`CalledProcessError` if the called process returns a non-zero return |
| 572 | code. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 573 | |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 574 | All of the functions and methods that accept a *timeout* parameter, such as |
| 575 | :func:`call` and :meth:`Popen.communicate` will raise :exc:`TimeoutExpired` if |
| 576 | the timeout expires before the process exits. |
| 577 | |
Ronald Oussoren | c157790 | 2011-03-16 10:03:10 -0400 | [diff] [blame] | 578 | Exceptions defined in this module all inherit from :exc:`SubprocessError`. |
Gregory P. Smith | 54d412e | 2011-03-14 14:08:43 -0400 | [diff] [blame] | 579 | |
| 580 | .. versionadded:: 3.3 |
| 581 | The :exc:`SubprocessError` base class was added. |
| 582 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 583 | |
| 584 | Security |
| 585 | ^^^^^^^^ |
| 586 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 587 | Unlike some other popen functions, this implementation will never call a |
| 588 | system shell implicitly. This means that all characters, including shell |
| 589 | metacharacters, can safely be passed to child processes. Obviously, if the |
| 590 | shell is invoked explicitly, then it is the application's responsibility to |
| 591 | ensure that all whitespace and metacharacters are quoted appropriately. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 592 | |
| 593 | |
| 594 | Popen Objects |
| 595 | ------------- |
| 596 | |
| 597 | Instances of the :class:`Popen` class have the following methods: |
| 598 | |
| 599 | |
| 600 | .. method:: Popen.poll() |
| 601 | |
Christian Heimes | 7f04431 | 2008-01-06 17:05:40 +0000 | [diff] [blame] | 602 | Check if child process has terminated. Set and return :attr:`returncode` |
| 603 | attribute. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 604 | |
| 605 | |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 606 | .. method:: Popen.wait(timeout=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 607 | |
Christian Heimes | 7f04431 | 2008-01-06 17:05:40 +0000 | [diff] [blame] | 608 | Wait for child process to terminate. Set and return :attr:`returncode` |
| 609 | attribute. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 610 | |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 611 | If the process does not terminate after *timeout* seconds, raise a |
| 612 | :exc:`TimeoutExpired` exception. It is safe to catch this exception and |
| 613 | retry the wait. |
| 614 | |
Georg Brandl | 734e268 | 2008-08-12 08:18:18 +0000 | [diff] [blame] | 615 | .. warning:: |
| 616 | |
Philip Jenvey | b089684 | 2009-12-03 02:29:36 +0000 | [diff] [blame] | 617 | This will deadlock when using ``stdout=PIPE`` and/or |
| 618 | ``stderr=PIPE`` and the child process generates enough output to |
| 619 | a pipe such that it blocks waiting for the OS pipe buffer to |
| 620 | accept more data. Use :meth:`communicate` to avoid that. |
Georg Brandl | 734e268 | 2008-08-12 08:18:18 +0000 | [diff] [blame] | 621 | |
Reid Kleckner | 28f1303 | 2011-03-14 12:36:53 -0400 | [diff] [blame] | 622 | .. versionchanged:: 3.3 |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 623 | *timeout* was added. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 624 | |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 625 | |
| 626 | .. method:: Popen.communicate(input=None, timeout=None) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 627 | |
| 628 | Interact with process: Send data to stdin. Read data from stdout and stderr, |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 629 | until end-of-file is reached. Wait for process to terminate. The optional |
Gregory P. Smith | a454ef6 | 2011-05-22 22:29:49 -0700 | [diff] [blame] | 630 | *input* argument should be data to be sent to the child process, or |
| 631 | ``None``, if no data should be sent to the child. The type of *input* |
| 632 | must be bytes or, if *universal_newlines* was ``True``, a string. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 633 | |
Georg Brandl | af265f4 | 2008-12-07 15:06:20 +0000 | [diff] [blame] | 634 | :meth:`communicate` returns a tuple ``(stdoutdata, stderrdata)``. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 635 | |
Guido van Rossum | 0d3fb8a | 2007-11-26 23:23:18 +0000 | [diff] [blame] | 636 | Note that if you want to send data to the process's stdin, you need to create |
| 637 | the Popen object with ``stdin=PIPE``. Similarly, to get anything other than |
| 638 | ``None`` in the result tuple, you need to give ``stdout=PIPE`` and/or |
| 639 | ``stderr=PIPE`` too. |
| 640 | |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 641 | If the process does not terminate after *timeout* seconds, a |
| 642 | :exc:`TimeoutExpired` exception will be raised. Catching this exception and |
| 643 | retrying communication will not lose any output. |
| 644 | |
| 645 | The child process is not killed if the timeout expires, so in order to |
| 646 | cleanup properly a well-behaved application should kill the child process and |
| 647 | finish communication:: |
| 648 | |
| 649 | proc = subprocess.Popen(...) |
| 650 | try: |
| 651 | outs, errs = proc.communicate(timeout=15) |
| 652 | except TimeoutExpired: |
| 653 | proc.kill() |
| 654 | outs, errs = proc.communicate() |
| 655 | |
Christian Heimes | 7f04431 | 2008-01-06 17:05:40 +0000 | [diff] [blame] | 656 | .. note:: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 657 | |
Christian Heimes | 7f04431 | 2008-01-06 17:05:40 +0000 | [diff] [blame] | 658 | The data read is buffered in memory, so do not use this method if the data |
| 659 | size is large or unlimited. |
| 660 | |
Reid Kleckner | 28f1303 | 2011-03-14 12:36:53 -0400 | [diff] [blame] | 661 | .. versionchanged:: 3.3 |
Reid Kleckner | 31aa7dd | 2011-03-14 12:02:10 -0400 | [diff] [blame] | 662 | *timeout* was added. |
| 663 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 664 | |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 665 | .. method:: Popen.send_signal(signal) |
| 666 | |
| 667 | Sends the signal *signal* to the child. |
| 668 | |
| 669 | .. note:: |
| 670 | |
Brian Curtin | eb24d74 | 2010-04-12 17:16:38 +0000 | [diff] [blame] | 671 | On Windows, SIGTERM is an alias for :meth:`terminate`. CTRL_C_EVENT and |
Senthil Kumaran | 916bd38 | 2010-10-15 12:55:19 +0000 | [diff] [blame] | 672 | CTRL_BREAK_EVENT can be sent to processes started with a *creationflags* |
Brian Curtin | eb24d74 | 2010-04-12 17:16:38 +0000 | [diff] [blame] | 673 | parameter which includes `CREATE_NEW_PROCESS_GROUP`. |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 674 | |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 675 | |
| 676 | .. method:: Popen.terminate() |
| 677 | |
| 678 | Stop the child. On Posix OSs the method sends SIGTERM to the |
Georg Brandl | 60203b4 | 2010-10-06 10:11:56 +0000 | [diff] [blame] | 679 | child. On Windows the Win32 API function :c:func:`TerminateProcess` is called |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 680 | to stop the child. |
| 681 | |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 682 | |
| 683 | .. method:: Popen.kill() |
| 684 | |
| 685 | Kills the child. On Posix OSs the function sends SIGKILL to the child. |
| 686 | On Windows :meth:`kill` is an alias for :meth:`terminate`. |
| 687 | |
Christian Heimes | a342c01 | 2008-04-20 21:01:16 +0000 | [diff] [blame] | 688 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 689 | The following attributes are also available: |
| 690 | |
Georg Brandl | 734e268 | 2008-08-12 08:18:18 +0000 | [diff] [blame] | 691 | .. warning:: |
| 692 | |
Ezio Melotti | aa935df | 2012-08-27 10:00:05 +0300 | [diff] [blame] | 693 | Use :meth:`~Popen.communicate` rather than :attr:`.stdin.write <Popen.stdin>`, |
| 694 | :attr:`.stdout.read <Popen.stdout>` or :attr:`.stderr.read <Popen.stderr>` to avoid |
Georg Brandl | e720c0a | 2009-04-27 16:20:50 +0000 | [diff] [blame] | 695 | deadlocks due to any of the other OS pipe buffers filling up and blocking the |
| 696 | child process. |
Georg Brandl | 734e268 | 2008-08-12 08:18:18 +0000 | [diff] [blame] | 697 | |
| 698 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 699 | .. attribute:: Popen.stdin |
| 700 | |
Antoine Pitrou | 11cb961 | 2010-09-15 11:11:28 +0000 | [diff] [blame] | 701 | If the *stdin* argument was :data:`PIPE`, this attribute is a :term:`file |
| 702 | object` that provides input to the child process. Otherwise, it is ``None``. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 703 | |
| 704 | |
| 705 | .. attribute:: Popen.stdout |
| 706 | |
Antoine Pitrou | 11cb961 | 2010-09-15 11:11:28 +0000 | [diff] [blame] | 707 | If the *stdout* argument was :data:`PIPE`, this attribute is a :term:`file |
| 708 | object` that provides output from the child process. Otherwise, it is ``None``. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 709 | |
| 710 | |
| 711 | .. attribute:: Popen.stderr |
| 712 | |
Antoine Pitrou | 11cb961 | 2010-09-15 11:11:28 +0000 | [diff] [blame] | 713 | If the *stderr* argument was :data:`PIPE`, this attribute is a :term:`file |
| 714 | object` that provides error output from the child process. Otherwise, it is |
Georg Brandl | af265f4 | 2008-12-07 15:06:20 +0000 | [diff] [blame] | 715 | ``None``. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 716 | |
| 717 | |
| 718 | .. attribute:: Popen.pid |
| 719 | |
| 720 | The process ID of the child process. |
| 721 | |
Georg Brandl | 58bfdca | 2010-03-21 09:50:49 +0000 | [diff] [blame] | 722 | Note that if you set the *shell* argument to ``True``, this is the process ID |
| 723 | of the spawned shell. |
| 724 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 725 | |
| 726 | .. attribute:: Popen.returncode |
| 727 | |
Christian Heimes | 7f04431 | 2008-01-06 17:05:40 +0000 | [diff] [blame] | 728 | The child return code, set by :meth:`poll` and :meth:`wait` (and indirectly |
| 729 | by :meth:`communicate`). A ``None`` value indicates that the process |
| 730 | hasn't terminated yet. |
Georg Brandl | 48310cd | 2009-01-03 21:18:54 +0000 | [diff] [blame] | 731 | |
Christian Heimes | 7f04431 | 2008-01-06 17:05:40 +0000 | [diff] [blame] | 732 | A negative value ``-N`` indicates that the child was terminated by signal |
| 733 | ``N`` (Unix only). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 734 | |
| 735 | |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 736 | Windows Popen Helpers |
| 737 | --------------------- |
| 738 | |
| 739 | The :class:`STARTUPINFO` class and following constants are only available |
| 740 | on Windows. |
| 741 | |
| 742 | .. class:: STARTUPINFO() |
Brian Curtin | 73365dd | 2011-04-29 22:18:33 -0500 | [diff] [blame] | 743 | |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 744 | Partial support of the Windows |
| 745 | `STARTUPINFO <http://msdn.microsoft.com/en-us/library/ms686331(v=vs.85).aspx>`__ |
| 746 | structure is used for :class:`Popen` creation. |
| 747 | |
| 748 | .. attribute:: dwFlags |
| 749 | |
Senthil Kumaran | a6bac95 | 2011-07-04 11:28:30 -0700 | [diff] [blame] | 750 | A bit field that determines whether certain :class:`STARTUPINFO` |
| 751 | attributes are used when the process creates a window. :: |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 752 | |
| 753 | si = subprocess.STARTUPINFO() |
| 754 | si.dwFlags = subprocess.STARTF_USESTDHANDLES | subprocess.STARTF_USESHOWWINDOW |
| 755 | |
| 756 | .. attribute:: hStdInput |
| 757 | |
Senthil Kumaran | a6bac95 | 2011-07-04 11:28:30 -0700 | [diff] [blame] | 758 | If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute |
| 759 | is the standard input handle for the process. If |
| 760 | :data:`STARTF_USESTDHANDLES` is not specified, the default for standard |
| 761 | input is the keyboard buffer. |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 762 | |
| 763 | .. attribute:: hStdOutput |
| 764 | |
Senthil Kumaran | a6bac95 | 2011-07-04 11:28:30 -0700 | [diff] [blame] | 765 | If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute |
| 766 | is the standard output handle for the process. Otherwise, this attribute |
| 767 | is ignored and the default for standard output is the console window's |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 768 | buffer. |
| 769 | |
| 770 | .. attribute:: hStdError |
| 771 | |
Senthil Kumaran | a6bac95 | 2011-07-04 11:28:30 -0700 | [diff] [blame] | 772 | If :attr:`dwFlags` specifies :data:`STARTF_USESTDHANDLES`, this attribute |
| 773 | is the standard error handle for the process. Otherwise, this attribute is |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 774 | ignored and the default for standard error is the console window's buffer. |
| 775 | |
| 776 | .. attribute:: wShowWindow |
| 777 | |
Senthil Kumaran | a6bac95 | 2011-07-04 11:28:30 -0700 | [diff] [blame] | 778 | If :attr:`dwFlags` specifies :data:`STARTF_USESHOWWINDOW`, this attribute |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 779 | can be any of the values that can be specified in the ``nCmdShow`` |
| 780 | parameter for the |
| 781 | `ShowWindow <http://msdn.microsoft.com/en-us/library/ms633548(v=vs.85).aspx>`__ |
Senthil Kumaran | a6bac95 | 2011-07-04 11:28:30 -0700 | [diff] [blame] | 782 | function, except for ``SW_SHOWDEFAULT``. Otherwise, this attribute is |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 783 | ignored. |
Brian Curtin | 73365dd | 2011-04-29 22:18:33 -0500 | [diff] [blame] | 784 | |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 785 | :data:`SW_HIDE` is provided for this attribute. It is used when |
| 786 | :class:`Popen` is called with ``shell=True``. |
| 787 | |
| 788 | |
| 789 | Constants |
| 790 | ^^^^^^^^^ |
| 791 | |
| 792 | The :mod:`subprocess` module exposes the following constants. |
| 793 | |
| 794 | .. data:: STD_INPUT_HANDLE |
| 795 | |
| 796 | The standard input device. Initially, this is the console input buffer, |
| 797 | ``CONIN$``. |
| 798 | |
| 799 | .. data:: STD_OUTPUT_HANDLE |
| 800 | |
| 801 | The standard output device. Initially, this is the active console screen |
| 802 | buffer, ``CONOUT$``. |
| 803 | |
| 804 | .. data:: STD_ERROR_HANDLE |
| 805 | |
| 806 | The standard error device. Initially, this is the active console screen |
| 807 | buffer, ``CONOUT$``. |
| 808 | |
| 809 | .. data:: SW_HIDE |
| 810 | |
| 811 | Hides the window. Another window will be activated. |
| 812 | |
| 813 | .. data:: STARTF_USESTDHANDLES |
| 814 | |
| 815 | Specifies that the :attr:`STARTUPINFO.hStdInput`, |
Senthil Kumaran | a6bac95 | 2011-07-04 11:28:30 -0700 | [diff] [blame] | 816 | :attr:`STARTUPINFO.hStdOutput`, and :attr:`STARTUPINFO.hStdError` attributes |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 817 | contain additional information. |
| 818 | |
| 819 | .. data:: STARTF_USESHOWWINDOW |
| 820 | |
Senthil Kumaran | a6bac95 | 2011-07-04 11:28:30 -0700 | [diff] [blame] | 821 | Specifies that the :attr:`STARTUPINFO.wShowWindow` attribute contains |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 822 | additional information. |
| 823 | |
| 824 | .. data:: CREATE_NEW_CONSOLE |
| 825 | |
| 826 | The new process has a new console, instead of inheriting its parent's |
| 827 | console (the default). |
Brian Curtin | 73365dd | 2011-04-29 22:18:33 -0500 | [diff] [blame] | 828 | |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 829 | This flag is always set when :class:`Popen` is created with ``shell=True``. |
| 830 | |
Brian Curtin | 3040193 | 2011-04-29 22:20:57 -0500 | [diff] [blame] | 831 | .. data:: CREATE_NEW_PROCESS_GROUP |
| 832 | |
| 833 | A :class:`Popen` ``creationflags`` parameter to specify that a new process |
| 834 | group will be created. This flag is necessary for using :func:`os.kill` |
| 835 | on the subprocess. |
| 836 | |
| 837 | This flag is ignored if :data:`CREATE_NEW_CONSOLE` is specified. |
| 838 | |
Brian Curtin | e6242d7 | 2011-04-29 22:17:51 -0500 | [diff] [blame] | 839 | |
Benjamin Peterson | dcf97b9 | 2008-07-02 17:30:14 +0000 | [diff] [blame] | 840 | .. _subprocess-replacements: |
| 841 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 842 | Replacing Older Functions with the subprocess Module |
| 843 | ---------------------------------------------------- |
| 844 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 845 | In this section, "a becomes b" means that b can be used as a replacement for a. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 846 | |
| 847 | .. note:: |
| 848 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 849 | All "a" functions in this section fail (more or less) silently if the |
| 850 | executed program cannot be found; the "b" replacements raise :exc:`OSError` |
| 851 | instead. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 852 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 853 | In addition, the replacements using :func:`check_output` will fail with a |
| 854 | :exc:`CalledProcessError` if the requested operation produces a non-zero |
| 855 | return code. The output is still available as the ``output`` attribute of |
| 856 | the raised exception. |
| 857 | |
| 858 | In the following examples, we assume that the relevant functions have already |
| 859 | been imported from the subprocess module. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 860 | |
| 861 | |
| 862 | Replacing /bin/sh shell backquote |
| 863 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 864 | |
| 865 | :: |
| 866 | |
| 867 | output=`mycmd myarg` |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 868 | # becomes |
| 869 | output = check_output(["mycmd", "myarg"]) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 870 | |
| 871 | |
Benjamin Peterson | f10a79a | 2008-10-11 00:49:57 +0000 | [diff] [blame] | 872 | Replacing shell pipeline |
| 873 | ^^^^^^^^^^^^^^^^^^^^^^^^ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 874 | |
| 875 | :: |
| 876 | |
| 877 | output=`dmesg | grep hda` |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 878 | # becomes |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 879 | p1 = Popen(["dmesg"], stdout=PIPE) |
| 880 | p2 = Popen(["grep", "hda"], stdin=p1.stdout, stdout=PIPE) |
Gregory P. Smith | e09d2f1 | 2011-02-05 21:47:25 +0000 | [diff] [blame] | 881 | p1.stdout.close() # Allow p1 to receive a SIGPIPE if p2 exits. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 882 | output = p2.communicate()[0] |
| 883 | |
Gregory P. Smith | e09d2f1 | 2011-02-05 21:47:25 +0000 | [diff] [blame] | 884 | The p1.stdout.close() call after starting the p2 is important in order for p1 |
| 885 | to receive a SIGPIPE if p2 exits before p1. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 886 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 887 | Alternatively, for trusted input, the shell's own pipeline support may still |
R David Murray | 28b8b94 | 2012-04-03 08:46:48 -0400 | [diff] [blame] | 888 | be used directly:: |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 889 | |
| 890 | output=`dmesg | grep hda` |
| 891 | # becomes |
| 892 | output=check_output("dmesg | grep hda", shell=True) |
| 893 | |
| 894 | |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 895 | Replacing :func:`os.system` |
| 896 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 897 | |
| 898 | :: |
| 899 | |
| 900 | sts = os.system("mycmd" + " myarg") |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 901 | # becomes |
| 902 | sts = call("mycmd" + " myarg", shell=True) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 903 | |
| 904 | Notes: |
| 905 | |
| 906 | * Calling the program through the shell is usually not required. |
| 907 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 908 | A more realistic example would look like this:: |
| 909 | |
| 910 | try: |
| 911 | retcode = call("mycmd" + " myarg", shell=True) |
| 912 | if retcode < 0: |
Collin Winter | c79461b | 2007-09-01 23:34:30 +0000 | [diff] [blame] | 913 | print("Child was terminated by signal", -retcode, file=sys.stderr) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 914 | else: |
Collin Winter | c79461b | 2007-09-01 23:34:30 +0000 | [diff] [blame] | 915 | print("Child returned", retcode, file=sys.stderr) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 916 | except OSError as e: |
Collin Winter | c79461b | 2007-09-01 23:34:30 +0000 | [diff] [blame] | 917 | print("Execution failed:", e, file=sys.stderr) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 918 | |
| 919 | |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 920 | Replacing the :func:`os.spawn <os.spawnl>` family |
| 921 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 922 | |
| 923 | P_NOWAIT example:: |
| 924 | |
| 925 | pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg") |
| 926 | ==> |
| 927 | pid = Popen(["/bin/mycmd", "myarg"]).pid |
| 928 | |
| 929 | P_WAIT example:: |
| 930 | |
| 931 | retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg") |
| 932 | ==> |
| 933 | retcode = call(["/bin/mycmd", "myarg"]) |
| 934 | |
| 935 | Vector example:: |
| 936 | |
| 937 | os.spawnvp(os.P_NOWAIT, path, args) |
| 938 | ==> |
| 939 | Popen([path] + args[1:]) |
| 940 | |
| 941 | Environment example:: |
| 942 | |
| 943 | os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env) |
| 944 | ==> |
| 945 | Popen(["/bin/mycmd", "myarg"], env={"PATH": "/usr/bin"}) |
| 946 | |
| 947 | |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 948 | |
| 949 | Replacing :func:`os.popen`, :func:`os.popen2`, :func:`os.popen3` |
| 950 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 951 | |
| 952 | :: |
| 953 | |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 954 | (child_stdin, child_stdout) = os.popen2(cmd, mode, bufsize) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 955 | ==> |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 956 | p = Popen(cmd, shell=True, bufsize=bufsize, |
| 957 | stdin=PIPE, stdout=PIPE, close_fds=True) |
| 958 | (child_stdin, child_stdout) = (p.stdin, p.stdout) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 959 | |
| 960 | :: |
| 961 | |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 962 | (child_stdin, |
| 963 | child_stdout, |
| 964 | child_stderr) = os.popen3(cmd, mode, bufsize) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 965 | ==> |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 966 | p = Popen(cmd, shell=True, bufsize=bufsize, |
| 967 | stdin=PIPE, stdout=PIPE, stderr=PIPE, close_fds=True) |
| 968 | (child_stdin, |
| 969 | child_stdout, |
| 970 | child_stderr) = (p.stdin, p.stdout, p.stderr) |
| 971 | |
| 972 | :: |
| 973 | |
| 974 | (child_stdin, child_stdout_and_stderr) = os.popen4(cmd, mode, bufsize) |
| 975 | ==> |
| 976 | p = Popen(cmd, shell=True, bufsize=bufsize, |
| 977 | stdin=PIPE, stdout=PIPE, stderr=STDOUT, close_fds=True) |
| 978 | (child_stdin, child_stdout_and_stderr) = (p.stdin, p.stdout) |
| 979 | |
| 980 | Return code handling translates as follows:: |
| 981 | |
| 982 | pipe = os.popen(cmd, 'w') |
| 983 | ... |
| 984 | rc = pipe.close() |
Stefan Krah | fc9e08d | 2010-07-14 10:16:11 +0000 | [diff] [blame] | 985 | if rc is not None and rc >> 8: |
Ezio Melotti | 985e24d | 2009-09-13 07:54:02 +0000 | [diff] [blame] | 986 | print("There were some errors") |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 987 | ==> |
| 988 | process = Popen(cmd, 'w', stdin=PIPE) |
| 989 | ... |
| 990 | process.stdin.close() |
| 991 | if process.wait() != 0: |
Ezio Melotti | 985e24d | 2009-09-13 07:54:02 +0000 | [diff] [blame] | 992 | print("There were some errors") |
Benjamin Peterson | 87c8d87 | 2009-06-11 22:54:11 +0000 | [diff] [blame] | 993 | |
| 994 | |
| 995 | Replacing functions from the :mod:`popen2` module |
| 996 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 997 | |
| 998 | .. note:: |
| 999 | |
| 1000 | If the cmd argument to popen2 functions is a string, the command is executed |
| 1001 | through /bin/sh. If it is a list, the command is directly executed. |
| 1002 | |
| 1003 | :: |
| 1004 | |
| 1005 | (child_stdout, child_stdin) = popen2.popen2("somestring", bufsize, mode) |
| 1006 | ==> |
| 1007 | p = Popen(["somestring"], shell=True, bufsize=bufsize, |
| 1008 | stdin=PIPE, stdout=PIPE, close_fds=True) |
| 1009 | (child_stdout, child_stdin) = (p.stdout, p.stdin) |
| 1010 | |
| 1011 | :: |
| 1012 | |
| 1013 | (child_stdout, child_stdin) = popen2.popen2(["mycmd", "myarg"], bufsize, mode) |
| 1014 | ==> |
| 1015 | p = Popen(["mycmd", "myarg"], bufsize=bufsize, |
| 1016 | stdin=PIPE, stdout=PIPE, close_fds=True) |
| 1017 | (child_stdout, child_stdin) = (p.stdout, p.stdin) |
| 1018 | |
| 1019 | :class:`popen2.Popen3` and :class:`popen2.Popen4` basically work as |
| 1020 | :class:`subprocess.Popen`, except that: |
| 1021 | |
| 1022 | * :class:`Popen` raises an exception if the execution fails. |
| 1023 | |
| 1024 | * the *capturestderr* argument is replaced with the *stderr* argument. |
| 1025 | |
| 1026 | * ``stdin=PIPE`` and ``stdout=PIPE`` must be specified. |
| 1027 | |
| 1028 | * popen2 closes all file descriptors by default, but you have to specify |
Gregory P. Smith | f560485 | 2010-12-13 06:45:02 +0000 | [diff] [blame] | 1029 | ``close_fds=True`` with :class:`Popen` to guarantee this behavior on |
| 1030 | all platforms or past Python versions. |
Eli Bendersky | 046a764 | 2011-04-15 07:23:26 +0300 | [diff] [blame] | 1031 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 1032 | |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 1033 | Legacy Shell Invocation Functions |
Nick Coghlan | 32e4a58 | 2011-11-08 21:50:58 +1000 | [diff] [blame] | 1034 | --------------------------------- |
Nick Coghlan | c29248f | 2011-11-08 20:49:23 +1000 | [diff] [blame] | 1035 | |
| 1036 | This module also provides the following legacy functions from the 2.x |
| 1037 | ``commands`` module. These operations implicitly invoke the system shell and |
| 1038 | none of the guarantees described above regarding security and exception |
| 1039 | handling consistency are valid for these functions. |
| 1040 | |
| 1041 | .. function:: getstatusoutput(cmd) |
| 1042 | |
| 1043 | Return ``(status, output)`` of executing *cmd* in a shell. |
| 1044 | |
| 1045 | Execute the string *cmd* in a shell with :func:`os.popen` and return a 2-tuple |
| 1046 | ``(status, output)``. *cmd* is actually run as ``{ cmd ; } 2>&1``, so that the |
| 1047 | returned output will contain output or error messages. A trailing newline is |
| 1048 | stripped from the output. The exit status for the command can be interpreted |
| 1049 | according to the rules for the C function :c:func:`wait`. Example:: |
| 1050 | |
| 1051 | >>> subprocess.getstatusoutput('ls /bin/ls') |
| 1052 | (0, '/bin/ls') |
| 1053 | >>> subprocess.getstatusoutput('cat /bin/junk') |
| 1054 | (256, 'cat: /bin/junk: No such file or directory') |
| 1055 | >>> subprocess.getstatusoutput('/bin/junk') |
| 1056 | (256, 'sh: /bin/junk: not found') |
| 1057 | |
| 1058 | Availability: UNIX. |
| 1059 | |
| 1060 | |
| 1061 | .. function:: getoutput(cmd) |
| 1062 | |
| 1063 | Return output (stdout and stderr) of executing *cmd* in a shell. |
| 1064 | |
| 1065 | Like :func:`getstatusoutput`, except the exit status is ignored and the return |
| 1066 | value is a string containing the command's output. Example:: |
| 1067 | |
| 1068 | >>> subprocess.getoutput('ls /bin/ls') |
| 1069 | '/bin/ls' |
| 1070 | |
| 1071 | Availability: UNIX. |
| 1072 | |
Nick Coghlan | 32e4a58 | 2011-11-08 21:50:58 +1000 | [diff] [blame] | 1073 | |
Eli Bendersky | 046a764 | 2011-04-15 07:23:26 +0300 | [diff] [blame] | 1074 | Notes |
| 1075 | ----- |
| 1076 | |
| 1077 | .. _converting-argument-sequence: |
| 1078 | |
| 1079 | Converting an argument sequence to a string on Windows |
| 1080 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 1081 | |
| 1082 | On Windows, an *args* sequence is converted to a string that can be parsed |
| 1083 | using the following rules (which correspond to the rules used by the MS C |
| 1084 | runtime): |
| 1085 | |
| 1086 | 1. Arguments are delimited by white space, which is either a |
| 1087 | space or a tab. |
| 1088 | |
| 1089 | 2. A string surrounded by double quotation marks is |
| 1090 | interpreted as a single argument, regardless of white space |
| 1091 | contained within. A quoted string can be embedded in an |
| 1092 | argument. |
| 1093 | |
| 1094 | 3. A double quotation mark preceded by a backslash is |
| 1095 | interpreted as a literal double quotation mark. |
| 1096 | |
| 1097 | 4. Backslashes are interpreted literally, unless they |
| 1098 | immediately precede a double quotation mark. |
| 1099 | |
| 1100 | 5. If backslashes immediately precede a double quotation mark, |
| 1101 | every pair of backslashes is interpreted as a literal |
| 1102 | backslash. If the number of backslashes is odd, the last |
| 1103 | backslash escapes the next double quotation mark as |
| 1104 | described in rule 3. |
| 1105 | |
Eli Bendersky | d211231 | 2011-04-15 07:26:28 +0300 | [diff] [blame] | 1106 | |
Éric Araujo | 9bce311 | 2011-07-27 18:29:31 +0200 | [diff] [blame] | 1107 | .. seealso:: |
| 1108 | |
| 1109 | :mod:`shlex` |
| 1110 | Module which provides function to parse and escape command lines. |