shutil.rst 25 KB
Newer Older
1 2 3 4 5 6
:mod:`shutil` --- High-level file operations
============================================

.. module:: shutil
   :synopsis: High-level file operations, including copying.
.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
7
.. partly based on the docstrings
8 9 10 11 12

.. index::
   single: file; copying
   single: copying files

13 14
**Source code:** :source:`Lib/shutil.py`

15 16
--------------

17 18
The :mod:`shutil` module offers a number of high-level operations on files and
collections of files.  In particular, functions are provided  which support file
19 20
copying and removal. For operations on individual files, see also the
:mod:`os` module.
21

22
.. warning::
23

24 25
   Even the higher-level file copying functions (:func:`shutil.copy`,
   :func:`shutil.copy2`) cannot copy all file metadata.
26

27
   On POSIX platforms, this means that file owner and group are lost as well
28
   as ACLs.  On Mac OS, the resource fork and other metadata are not used.
29 30 31
   This means that resources will be lost and file type and creator codes will
   not be correct. On Windows, file owners, ACLs and alternate data streams
   are not copied.
32

33

34 35
.. _file-operations:

36 37
Directory and files operations
------------------------------
38 39 40 41 42 43 44 45 46 47 48 49

.. function:: copyfileobj(fsrc, fdst[, length])

   Copy the contents of the file-like object *fsrc* to the file-like object *fdst*.
   The integer *length*, if given, is the buffer size. In particular, a negative
   *length* value means to copy the data without looping over the source data in
   chunks; by default the data is read in chunks to avoid uncontrolled memory
   consumption. Note that if the current file position of the *fsrc* object is not
   0, only the contents from the current file position to the end of the file will
   be copied.


50
.. function:: copyfile(src, dst, *, follow_symlinks=True)
Christian Heimes's avatar
Christian Heimes committed
51

52
   Copy the contents (no metadata) of the file named *src* to a file named
53 54 55
   *dst* and return *dst*.  *src* and *dst* are path names given as strings.
   *dst* must be the complete target file name; look at :func:`shutil.copy`
   for a copy that accepts a target directory path.  If *src* and *dst*
56
   specify the same file, :exc:`SameFileError` is raised.
57

58 59 60 61
   The destination location must be writable; otherwise, an :exc:`OSError`
   exception will be raised. If *dst* already exists, it will be replaced.
   Special files such as character or block devices and pipes cannot be
   copied with this function.
Christian Heimes's avatar
Christian Heimes committed
62

63 64 65
   If *follow_symlinks* is false and *src* is a symbolic link,
   a new symbolic link will be created instead of copying the
   file *src* points to.
66

67 68
   .. versionchanged:: 3.3
      :exc:`IOError` used to be raised instead of :exc:`OSError`.
69 70
      Added *follow_symlinks* argument.
      Now returns *dst*.
71

72
   .. versionchanged:: 3.4
73 74
      Raise :exc:`SameFileError` instead of :exc:`Error`.  Since the former is
      a subclass of the latter, this change is backward compatible.
75 76 77 78 79 80 81 82 83 84


.. exception:: SameFileError

   This exception is raised if source and destination in :func:`copyfile`
   are the same file.

   .. versionadded:: 3.4


85
.. function:: copymode(src, dst, *, follow_symlinks=True)
86 87

   Copy the permission bits from *src* to *dst*.  The file contents, owner, and
88 89 90 91 92 93 94
   group are unaffected.  *src* and *dst* are path names given as strings.
   If *follow_symlinks* is false, and both *src* and *dst* are symbolic links,
   :func:`copymode` will attempt to modify the mode of *dst* itself (rather
   than the file it points to).  This functionality is not available on every
   platform; please see :func:`copystat` for more information.  If
   :func:`copymode` cannot modify symbolic links on the local platform, and it
   is asked to do so, it will do nothing and return.
95

96
   .. versionchanged:: 3.3
97
      Added *follow_symlinks* argument.
98

99
.. function:: copystat(src, dst, *, follow_symlinks=True)
100

101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
   Copy the permission bits, last access time, last modification time, and
   flags from *src* to *dst*.  On Linux, :func:`copystat` also copies the
   "extended attributes" where possible.  The file contents, owner, and
   group are unaffected.  *src* and *dst* are path names given as strings.

   If *follow_symlinks* is false, and *src* and *dst* both
   refer to symbolic links, :func:`copystat` will operate on
   the symbolic links themselves rather than the files the
   symbolic links refer to--reading the information from the
   *src* symbolic link, and writing the information to the
   *dst* symbolic link.

   .. note::

      Not all platforms provide the ability to examine and
      modify symbolic links.  Python itself can tell you what
      functionality is locally available.

      * If ``os.chmod in os.supports_follow_symlinks`` is
        ``True``, :func:`copystat` can modify the permission
        bits of a symbolic link.

      * If ``os.utime in os.supports_follow_symlinks`` is
        ``True``, :func:`copystat` can modify the last access
        and modification times of a symbolic link.

      * If ``os.chflags in os.supports_follow_symlinks`` is
        ``True``, :func:`copystat` can modify the flags of
        a symbolic link.  (``os.chflags`` is not available on
        all platforms.)

      On platforms where some or all of this functionality
      is unavailable, when asked to modify a symbolic link,
      :func:`copystat` will copy everything it can.
      :func:`copystat` never returns failure.

      Please see :data:`os.supports_follow_symlinks`
      for more information.
139

140
   .. versionchanged:: 3.3
141
      Added *follow_symlinks* argument and support for Linux extended attributes.
142

143
.. function:: copy(src, dst, *, follow_symlinks=True)
144

145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
   Copies the file *src* to the file or directory *dst*.  *src* and *dst*
   should be strings.  If *dst* specifies a directory, the file will be
   copied into *dst* using the base filename from *src*.  Returns the
   path to the newly created file.

   If *follow_symlinks* is false, and *src* is a symbolic link,
   *dst* will be created as a symbolic link.  If *follow_symlinks*
   is true and *src* is a symbolic link, *dst* will be a copy of
   the file *src* refers to.

   :func:`copy` copies the file data and the file's permission
   mode (see :func:`os.chmod`).  Other metadata, like the
   file's creation and modification times, is not preserved.
   To preserve all file metadata from the original, use
   :func:`~shutil.copy2` instead.
160

161
   .. versionchanged:: 3.3
162
      Added *follow_symlinks* argument.
163
      Now returns path to the newly created file.
164

165
.. function:: copy2(src, dst, *, follow_symlinks=True)
166

167 168 169 170 171 172 173 174 175 176 177 178 179 180
   Identical to :func:`~shutil.copy` except that :func:`copy2`
   also attempts to preserve all file metadata.

   When *follow_symlinks* is false, and *src* is a symbolic
   link, :func:`copy2` attempts to copy all metadata from the
   *src* symbolic link to the newly-created *dst* symbolic link.
   However, this functionality is not available on all platforms.
   On platforms where some or all of this functionality is
   unavailable, :func:`copy2` will preserve all the metadata
   it can; :func:`copy2` never returns failure.

   :func:`copy2` uses :func:`copystat` to copy the file metadata.
   Please see :func:`copystat` for more information
   about platform support for modifying symbolic link metadata.
181

182
   .. versionchanged:: 3.3
183 184
      Added *follow_symlinks* argument, try to copy extended
      file system attributes too (currently Linux only).
185
      Now returns path to the newly created file.
186

Georg Brandl's avatar
Georg Brandl committed
187 188 189 190 191 192 193
.. function:: ignore_patterns(\*patterns)

   This factory function creates a function that can be used as a callable for
   :func:`copytree`\'s *ignore* argument, ignoring files and directories that
   match one of the glob-style *patterns* provided.  See the example below.


194 195
.. function:: copytree(src, dst, symlinks=False, ignore=None, \
              copy_function=copy2, ignore_dangling_symlinks=False)
196

197 198
   Recursively copy an entire directory tree rooted at *src*, returning the
   destination directory.  The destination
199 200 201 202
   directory, named by *dst*, must not already exist; it will be created as
   well as missing parent directories.  Permissions and times of directories
   are copied with :func:`copystat`, individual files are copied using
   :func:`shutil.copy2`.
Georg Brandl's avatar
Georg Brandl committed
203 204

   If *symlinks* is true, symbolic links in the source tree are represented as
205 206 207
   symbolic links in the new tree and the metadata of the original links will
   be copied as far as the platform allows; if false or omitted, the contents
   and metadata of the linked files are copied to the new tree.
Georg Brandl's avatar
Georg Brandl committed
208

209
   When *symlinks* is false, if the file pointed by the symlink doesn't
210 211
   exist, an exception will be added in the list of errors raised in
   an :exc:`Error` exception at the end of the copy process.
212
   You can set the optional *ignore_dangling_symlinks* flag to true if you
213 214
   want to silence this exception. Notice that this option has no effect
   on platforms that don't support :func:`os.symlink`.
215

Georg Brandl's avatar
Georg Brandl committed
216 217 218 219 220 221 222 223 224 225 226 227
   If *ignore* is given, it must be a callable that will receive as its
   arguments the directory being visited by :func:`copytree`, and a list of its
   contents, as returned by :func:`os.listdir`.  Since :func:`copytree` is
   called recursively, the *ignore* callable will be called once for each
   directory that is copied.  The callable must return a sequence of directory
   and file names relative to the current directory (i.e. a subset of the items
   in its second argument); these names will then be ignored in the copy
   process.  :func:`ignore_patterns` can be used to create such a callable that
   ignores names based on glob-style patterns.

   If exception(s) occur, an :exc:`Error` is raised with a list of reasons.

228 229 230
   If *copy_function* is given, it must be a callable that will be used to copy
   each file. It will be called with the source path and the destination path
   as arguments. By default, :func:`shutil.copy2` is used, but any function
231
   that supports the same signature (like :func:`shutil.copy`) can be used.
232

233 234 235 236
   .. versionchanged:: 3.3
      Copy metadata when *symlinks* is false.
      Now returns *dst*.

237 238 239
   .. versionchanged:: 3.2
      Added the *copy_function* argument to be able to provide a custom copy
      function.
240 241 242
      Added the *ignore_dangling_symlinks* argument to silent dangling symlinks
      errors when *symlinks* is false.

243

244
.. function:: rmtree(path, ignore_errors=False, onerror=None)
245 246 247

   .. index:: single: directory; deleting

248 249 250 251 252 253
   Delete an entire directory tree; *path* must point to a directory (but not a
   symbolic link to a directory).  If *ignore_errors* is true, errors resulting
   from failed removals will be ignored; if false or omitted, such errors are
   handled by calling a handler specified by *onerror* or, if that is omitted,
   they raise an exception.

254
   .. note::
255

256
      On platforms that support the necessary fd-based functions a symlink
257 258 259 260 261 262
      attack resistant version of :func:`rmtree` is used by default.  On other
      platforms, the :func:`rmtree` implementation is susceptible to a symlink
      attack: given proper timing and circumstances, attackers can manipulate
      symlinks on the filesystem to delete files they wouldn't be able to access
      otherwise.  Applications can use the :data:`rmtree.avoids_symlink_attacks`
      function attribute to determine which case applies.
263

264
   If *onerror* is provided, it must be a callable that accepts three
265 266 267 268 269 270 271 272 273
   parameters: *function*, *path*, and *excinfo*.

   The first parameter, *function*, is the function which raised the exception;
   it depends on the platform and implementation.  The second parameter,
   *path*, will be the path name passed to *function*.  The third parameter,
   *excinfo*, will be the exception information returned by
   :func:`sys.exc_info`.  Exceptions raised by *onerror* will not be caught.

   .. versionchanged:: 3.3
274 275
      Added a symlink attack resistant version that is used automatically
      if platform supports fd-based functions.
276

Éric Araujo's avatar
Éric Araujo committed
277
   .. attribute:: rmtree.avoids_symlink_attacks
278

279
      Indicates whether the current platform and implementation provides a
280
      symlink attack resistant version of :func:`rmtree`.  Currently this is
281
      only true for platforms supporting fd-based directory access functions.
282

283
      .. versionadded:: 3.3
284

285

286
.. function:: move(src, dst, copy_function=copy2)
287

288 289
   Recursively move a file or directory (*src*) to another location (*dst*)
   and return the destination.
290

291 292 293
   If the destination is an existing directory, then *src* is moved inside that
   directory. If the destination already exists but is not a directory, it may
   be overwritten depending on :func:`os.rename` semantics.
294 295

   If the destination is on the current filesystem, then :func:`os.rename` is
296 297 298 299 300 301 302 303 304 305 306
   used. Otherwise, *src* is copied to *dst* using *copy_function* and then
   removed.  In case of symlinks, a new symlink pointing to the target of *src*
   will be created in or as *dst* and *src* will be removed.

   If *copy_function* is given, it must be a callable that takes two arguments
   *src* and *dst*, and will be used to copy *src* to *dest* if
   :func:`os.rename` cannot be used.  If the source is a directory,
   :func:`copytree` is called, passing it the :func:`copy_function`. The
   default *copy_function* is :func:`copy2`.  Using :func:`copy` as the
   *copy_function* allows the move to succeed when it is not possible to also
   copy the metadata, at the expense of not copying any of the metadata.
307 308 309 310

   .. versionchanged:: 3.3
      Added explicit symlink handling for foreign filesystems, thus adapting
      it to the behavior of GNU's :program:`mv`.
311
      Now returns *dst*.
312

313 314 315
   .. versionchanged:: 3.5
      Added the *copy_function* keyword argument.

316 317
.. function:: disk_usage(path)

318 319 320
   Return disk usage statistics about the given path as a :term:`named tuple`
   with the attributes *total*, *used* and *free*, which are the amount of
   total, used and free space, in bytes.
321 322 323 324

   .. versionadded:: 3.3

   Availability: Unix, Windows.
325

326 327 328 329 330 331 332 333 334 335 336 337 338
.. function:: chown(path, user=None, group=None)

   Change owner *user* and/or *group* of the given *path*.

   *user* can be a system user name or a uid; the same applies to *group*. At
   least one argument is required.

   See also :func:`os.chown`, the underlying function.

   Availability: Unix.

   .. versionadded:: 3.3

339

340 341
.. function:: which(cmd, mode=os.F_OK | os.X_OK, path=None)

342 343
   Return the path to an executable which would be run if the given *cmd* was
   called.  If no *cmd* would be called, return ``None``.
344 345 346 347

   *mode* is a permission mask passed a to :func:`os.access`, by default
   determining if the file exists and executable.

348 349
   When no *path* is specified, the results of :func:`os.environ` are used,
   returning either the "PATH" value or a fallback of :attr:`os.defpath`.
350

351 352
   On Windows, the current directory is always prepended to the *path* whether
   or not you use the default or provide your own, which is the behavior the
353
   command shell uses when finding executables.  Additionally, when finding the
354 355 356 357
   *cmd* in the *path*, the ``PATHEXT`` environment variable is checked.  For
   example, if you call ``shutil.which("python")``, :func:`which` will search
   ``PATHEXT`` to know that it should look for ``python.exe`` within the *path*
   directories.  For example, on Windows::
358

359
      >>> shutil.which("python")
360
      'C:\\Python33\\python.EXE'
361 362

   .. versionadded:: 3.3
363

364

365 366
.. exception:: Error

367 368 369
   This exception collects exceptions that are raised during a multi-file
   operation. For :func:`copytree`, the exception argument is a list of 3-tuples
   (*srcname*, *dstname*, *exception*).
370 371


372
.. _shutil-copytree-example:
373

374
copytree example
375
~~~~~~~~~~~~~~~~
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396

This example is the implementation of the :func:`copytree` function, described
above, with the docstring omitted.  It demonstrates many of the other functions
provided by this module. ::

   def copytree(src, dst, symlinks=False):
       names = os.listdir(src)
       os.makedirs(dst)
       errors = []
       for name in names:
           srcname = os.path.join(src, name)
           dstname = os.path.join(dst, name)
           try:
               if symlinks and os.path.islink(srcname):
                   linkto = os.readlink(srcname)
                   os.symlink(linkto, dstname)
               elif os.path.isdir(srcname):
                   copytree(srcname, dstname, symlinks)
               else:
                   copy2(srcname, dstname)
               # XXX What about devices, sockets etc.?
397
           except OSError as why:
398 399 400 401 402 403 404 405
               errors.append((srcname, dstname, str(why)))
           # catch the Error from the recursive copytree so that we can
           # continue with other files
           except Error as err:
               errors.extend(err.args[0])
       try:
           copystat(src, dst)
       except OSError as why:
406 407 408
           # can't copy file access times on Windows
           if why.winerror is None:
               errors.extend((src, dst, str(why)))
409
       if errors:
410
           raise Error(errors)
411

412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
Another example that uses the :func:`ignore_patterns` helper::

   from shutil import copytree, ignore_patterns

   copytree(source, destination, ignore=ignore_patterns('*.pyc', 'tmp*'))

This will copy everything except ``.pyc`` files and files or directories whose
name starts with ``tmp``.

Another example that uses the *ignore* argument to add a logging call::

   from shutil import copytree
   import logging

   def _logpath(path, names):
       logging.info('Working in %s' % path)
       return []   # nothing will be ignored

   copytree(source, destination, ignore=_logpath)


433 434 435 436 437 438 439 440 441 442 443 444
.. _shutil-rmtree-example:

rmtree example
~~~~~~~~~~~~~~

This example shows how to remove a directory tree on Windows where some
of the files have their read-only bit set. It uses the onerror callback
to clear the readonly bit and reattempt the remove. Any subsequent failure
will propagate. ::

    import os, stat
    import shutil
Tim Golden's avatar
Tim Golden committed
445

446 447 448
    def remove_readonly(func, path, _):
        "Clear the readonly bit and reattempt the removal"
        os.chmod(path, stat.S_IWRITE)
Tim Golden's avatar
Tim Golden committed
449 450
        func(path)

451 452
    shutil.rmtree(directory, onerror=remove_readonly)

453 454 455 456
.. _archiving-operations:

Archiving operations
--------------------
457

458 459
.. versionadded:: 3.2

460 461 462
High-level utilities to create and read compressed and archived files are also
provided.  They rely on the :mod:`zipfile` and :mod:`tarfile` modules.

463 464
.. function:: make_archive(base_name, format, [root_dir, [base_dir, [verbose, [dry_run, [owner, [group, [logger]]]]]]])

465
   Create an archive file (such as zip or tar) and return its name.
466 467 468

   *base_name* is the name of the file to create, including the path, minus
   any format-specific extension. *format* is the archive format: one of
469 470
   "zip", "tar", "bztar" (if the :mod:`bz2` module is available), "xztar"
   (if the :mod:`lzma` module is available) or "gztar".
471 472

   *root_dir* is a directory that will be the root directory of the
473
   archive; for example, we typically chdir into *root_dir* before creating the
474 475 476
   archive.

   *base_dir* is the directory where we start archiving from;
477
   i.e. *base_dir* will be the common prefix of all files and
478 479 480 481
   directories in the archive.

   *root_dir* and *base_dir* both default to the current directory.

482 483 484
   If *dry_run* is true, no archive is created, but the operations that would be
   executed are logged to *logger*.

485 486 487
   *owner* and *group* are used when creating a tar archive. By default,
   uses the current owner and group.

488 489
   *logger* must be an object compatible with :pep:`282`, usually an instance of
   :class:`logging.Logger`.
490

491
   The *verbose* argument is unused and deprecated.
492

493
   .. versionchanged:: 3.5
494
      Added support for the *xztar* format.
495

496 497 498

.. function:: get_archive_formats()

499
   Return a list of supported formats for archiving.
500
   Each element of the returned sequence is a tuple ``(name, description)``.
501 502 503 504

   By default :mod:`shutil` provides these formats:

   - *gztar*: gzip'ed tar-file
505
   - *bztar*: bzip2'ed tar-file (if the :mod:`bz2` module is available.)
506
   - *xztar*: xz'ed tar-file (if the :mod:`lzma` module is available.)
507 508 509 510 511 512 513 514 515
   - *tar*: uncompressed tar file
   - *zip*: ZIP file

   You can register new formats or provide your own archiver for any existing
   formats, by using :func:`register_archive_format`.


.. function:: register_archive_format(name, function, [extra_args, [description]])

516 517 518 519 520 521 522
   Register an archiver for the format *name*.

   *function* is the callable that will be used to unpack archives. The callable
   will receive the *base_name* of the file to create, followed by the
   *base_dir* (which defaults to :data:`os.curdir`) to start archiving from.
   Further arguments are passed as keyword arguments: *owner*, *group*,
   *dry_run* and *logger* (as passed in :func:`make_archive`).
523

524
   If given, *extra_args* is a sequence of ``(name, value)`` pairs that will be
525 526 527
   used as extra keywords arguments when the archiver callable is used.

   *description* is used by :func:`get_archive_formats` which returns the
528
   list of archivers.  Defaults to an empty string.
529 530


531
.. function:: unregister_archive_format(name)
532 533 534 535

   Remove the archive format *name* from the list of supported formats.


536 537 538 539 540 541 542 543 544 545 546 547 548 549
.. function:: unpack_archive(filename[, extract_dir[, format]])

   Unpack an archive. *filename* is the full path of the archive.

   *extract_dir* is the name of the target directory where the archive is
   unpacked. If not provided, the current working directory is used.

   *format* is the archive format: one of "zip", "tar", or "gztar". Or any
   other format registered with :func:`register_unpack_format`. If not
   provided, :func:`unpack_archive` will use the archive file name extension
   and see if an unpacker was registered for that extension. In case none is
   found, a :exc:`ValueError` is raised.


550
.. function:: register_unpack_format(name, extensions, function[, extra_args[, description]])
551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580

   Registers an unpack format. *name* is the name of the format and
   *extensions* is a list of extensions corresponding to the format, like
   ``.zip`` for Zip files.

   *function* is the callable that will be used to unpack archives. The
   callable will receive the path of the archive, followed by the directory
   the archive must be extracted to.

   When provided, *extra_args* is a sequence of ``(name, value)`` tuples that
   will be passed as keywords arguments to the callable.

   *description* can be provided to describe the format, and will be returned
   by the :func:`get_unpack_formats` function.


.. function:: unregister_unpack_format(name)

   Unregister an unpack format. *name* is the name of the format.


.. function:: get_unpack_formats()

   Return a list of all registered formats for unpacking.
   Each element of the returned sequence is a tuple
   ``(name, extensions, description)``.

   By default :mod:`shutil` provides these formats:

   - *gztar*: gzip'ed tar-file
581
   - *bztar*: bzip2'ed tar-file (if the :mod:`bz2` module is available.)
582
   - *xztar*: xz'ed tar-file (if the :mod:`lzma` module is available.)
583 584 585 586 587 588 589
   - *tar*: uncompressed tar file
   - *zip*: ZIP file

   You can register new formats or provide your own unpacker for any existing
   formats, by using :func:`register_unpack_format`.


590
.. _shutil-archiving-example:
591

592
Archiving example
593
~~~~~~~~~~~~~~~~~
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615

In this example, we create a gzip'ed tar-file archive containing all files
found in the :file:`.ssh` directory of the user::

    >>> from shutil import make_archive
    >>> import os
    >>> archive_name = os.path.expanduser(os.path.join('~', 'myarchive'))
    >>> root_dir = os.path.expanduser(os.path.join('~', '.ssh'))
    >>> make_archive(archive_name, 'gztar', root_dir)
    '/Users/tarek/myarchive.tar.gz'

The resulting archive contains::

    $ tar -tzvf /Users/tarek/myarchive.tar.gz
    drwx------ tarek/staff       0 2010-02-01 16:23:40 ./
    -rw-r--r-- tarek/staff     609 2008-06-09 13:26:54 ./authorized_keys
    -rwxr-xr-x tarek/staff      65 2008-06-09 13:26:54 ./config
    -rwx------ tarek/staff     668 2008-06-09 13:26:54 ./id_dsa
    -rwxr-xr-x tarek/staff     609 2008-06-09 13:26:54 ./id_dsa.pub
    -rw------- tarek/staff    1675 2008-06-09 13:26:54 ./id_rsa
    -rw-r--r-- tarek/staff     397 2008-06-09 13:26:54 ./id_rsa.pub
    -rw-r--r-- tarek/staff   37192 2010-02-06 18:23:10 ./known_hosts
616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648


Querying the size of the output terminal
----------------------------------------

.. versionadded:: 3.3

.. function:: get_terminal_size(fallback=(columns, lines))

   Get the size of the terminal window.

   For each of the two dimensions, the environment variable, ``COLUMNS``
   and ``LINES`` respectively, is checked. If the variable is defined and
   the value is a positive integer, it is used.

   When ``COLUMNS`` or ``LINES`` is not defined, which is the common case,
   the terminal connected to :data:`sys.__stdout__` is queried
   by invoking :func:`os.get_terminal_size`.

   If the terminal size cannot be successfully queried, either because
   the system doesn't support querying, or because we are not
   connected to a terminal, the value given in ``fallback`` parameter
   is used. ``fallback`` defaults to ``(80, 24)`` which is the default
   size used by many terminal emulators.

   The value returned is a named tuple of type :class:`os.terminal_size`.

   See also: The Single UNIX Specification, Version 2,
   `Other Environment Variables`_.

.. _`Other Environment Variables`:
   http://pubs.opengroup.org/onlinepubs/7908799/xbd/envvar.html#tag_002_003