blob: 5978031eb65cafec021ed2eb0c3d9d866de01609 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001
2:mod:`gzip` --- Support for :program:`gzip` files
3=================================================
4
5.. module:: gzip
6 :synopsis: Interfaces for gzip compression and decompression using file objects.
7
8
9The data compression provided by the ``zlib`` module is compatible with that
10used by the GNU compression program :program:`gzip`. Accordingly, the
11:mod:`gzip` module provides the :class:`GzipFile` class to read and write
12:program:`gzip`\ -format files, automatically compressing or decompressing the
13data so it looks like an ordinary file object. Note that additional file
14formats which can be decompressed by the :program:`gzip` and :program:`gunzip`
15programs, such as those produced by :program:`compress` and :program:`pack`,
16are not supported by this module.
17
18The module defines the following items:
19
20
21.. class:: GzipFile([filename[, mode[, compresslevel[, fileobj]]]])
22
23 Constructor for the :class:`GzipFile` class, which simulates most of the methods
24 of a file object, with the exception of the :meth:`readinto` and
25 :meth:`truncate` methods. At least one of *fileobj* and *filename* must be
26 given a non-trivial value.
27
28 The new class instance is based on *fileobj*, which can be a regular file, a
29 :class:`StringIO` object, or any other object which simulates a file. It
30 defaults to ``None``, in which case *filename* is opened to provide a file
31 object.
32
33 When *fileobj* is not ``None``, the *filename* argument is only used to be
34 included in the :program:`gzip` file header, which may includes the original
35 filename of the uncompressed file. It defaults to the filename of *fileobj*, if
36 discernible; otherwise, it defaults to the empty string, and in this case the
37 original filename is not included in the header.
38
39 The *mode* argument can be any of ``'r'``, ``'rb'``, ``'a'``, ``'ab'``, ``'w'``,
40 or ``'wb'``, depending on whether the file will be read or written. The default
41 is the mode of *fileobj* if discernible; otherwise, the default is ``'rb'``. If
42 not given, the 'b' flag will be added to the mode to ensure the file is opened
43 in binary mode for cross-platform portability.
44
45 The *compresslevel* argument is an integer from ``1`` to ``9`` controlling the
46 level of compression; ``1`` is fastest and produces the least compression, and
47 ``9`` is slowest and produces the most compression. The default is ``9``.
48
49 Calling a :class:`GzipFile` object's :meth:`close` method does not close
50 *fileobj*, since you might wish to append more material after the compressed
51 data. This also allows you to pass a :class:`StringIO` object opened for
52 writing as *fileobj*, and retrieve the resulting memory buffer using the
53 :class:`StringIO` object's :meth:`getvalue` method.
54
55
56.. function:: open(filename[, mode[, compresslevel]])
57
58 This is a shorthand for ``GzipFile(filename,`` ``mode,`` ``compresslevel)``.
59 The *filename* argument is required; *mode* defaults to ``'rb'`` and
60 *compresslevel* defaults to ``9``.
61
62
63.. seealso::
64
65 Module :mod:`zlib`
66 The basic data compression module needed to support the :program:`gzip` file
67 format.
68