bz2.rst 8.62 KB
Newer Older
1 2
:mod:`bz2` --- Support for :program:`bzip2` compression
=======================================================
3 4

.. module:: bz2
5
   :synopsis: Interfaces for bzip2 compression and decompression.
6

7
.. moduleauthor:: Gustavo Niemeyer <niemeyer@conectiva.com>
8
.. moduleauthor:: Nadeem Vawda <nadeem.vawda@gmail.com>
9
.. sectionauthor:: Gustavo Niemeyer <niemeyer@conectiva.com>
10
.. sectionauthor:: Nadeem Vawda <nadeem.vawda@gmail.com>
11

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

--------------
15

16 17
This module provides a comprehensive interface for compressing and
decompressing data using the bzip2 compression algorithm.
18

19
The :mod:`bz2` module contains:
20

21 22
* The :func:`.open` function and :class:`BZ2File` class for reading and
  writing compressed files.
23 24 25 26
* The :class:`BZ2Compressor` and :class:`BZ2Decompressor` classes for
  incremental (de)compression.
* The :func:`compress` and :func:`decompress` functions for one-shot
  (de)compression.
27

28
All of the classes in this module may safely be accessed from multiple threads.
29 30 31 32 33


(De)compression of files
------------------------

34 35 36 37 38 39 40 41 42 43
.. function:: open(filename, mode='r', compresslevel=9, encoding=None, errors=None, newline=None)

   Open a bzip2-compressed file in binary or text mode, returning a :term:`file
   object`.

   As with the constructor for :class:`BZ2File`, the *filename* argument can be
   an actual filename (a :class:`str` or :class:`bytes` object), or an existing
   file object to read from or write to.

   The *mode* argument can be any of ``'r'``, ``'rb'``, ``'w'``, ``'wb'``,
44 45
   ``'x'``, ``'xb'``, ``'a'`` or ``'ab'`` for binary mode, or ``'rt'``,
   ``'wt'``, ``'xt'``, or ``'at'`` for text mode. The default is ``'rb'``.
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60

   The *compresslevel* argument is an integer from 1 to 9, as for the
   :class:`BZ2File` constructor.

   For binary mode, this function is equivalent to the :class:`BZ2File`
   constructor: ``BZ2File(filename, mode, compresslevel=compresslevel)``. In
   this case, the *encoding*, *errors* and *newline* arguments must not be
   provided.

   For text mode, a :class:`BZ2File` object is created, and wrapped in an
   :class:`io.TextIOWrapper` instance with the specified encoding, error
   handling behavior, and line ending(s).

   .. versionadded:: 3.3

61 62 63
   .. versionchanged:: 3.4
      The ``'x'`` (exclusive creation) mode was added.

64 65 66
   .. versionchanged:: 3.6
      Accepts a :term:`path-like object`.

67

68
.. class:: BZ2File(filename, mode='r', buffering=None, compresslevel=9)
69

70
   Open a bzip2-compressed file in binary mode.
71

72 73 74
   If *filename* is a :class:`str` or :class:`bytes` object, open the named file
   directly. Otherwise, *filename* should be a :term:`file object`, which will
   be used to read or write the compressed data.
75

76
   The *mode* argument can be either ``'r'`` for reading (default), ``'w'`` for
77 78 79
   overwriting, ``'x'`` for exclusive creation, or ``'a'`` for appending. These
   can equivalently be given as ``'rb'``, ``'wb'``, ``'xb'`` and ``'ab'``
   respectively.
80 81 82

   If *filename* is a file object (rather than an actual file name), a mode of
   ``'w'`` does not truncate the file, and is instead equivalent to ``'a'``.
Benjamin Peterson's avatar
Benjamin Peterson committed
83

84
   The *buffering* argument is ignored. Its use is deprecated.
85

86 87 88 89 90 91
   If *mode* is ``'w'`` or ``'a'``, *compresslevel* can be a number between
   ``1`` and ``9`` specifying the level of compression: ``1`` produces the
   least compression, and ``9`` (default) produces the most compression.

   If *mode* is ``'r'``, the input file may be the concatenation of multiple
   compressed streams.
92

93 94 95
   :class:`BZ2File` provides all of the members specified by the
   :class:`io.BufferedIOBase`, except for :meth:`detach` and :meth:`truncate`.
   Iteration and the :keyword:`with` statement are supported.
96

97
   :class:`BZ2File` also provides the following method:
98

99
   .. method:: peek([n])
100

101 102 103
      Return buffered data without advancing the file position. At least one
      byte of data will be returned (unless at EOF). The exact number of bytes
      returned is unspecified.
104

105 106 107 108 109
      .. note:: While calling :meth:`peek` does not change the file position of
         the :class:`BZ2File`, it may change the position of the underlying file
         object (e.g. if the :class:`BZ2File` was constructed by passing a file
         object for *filename*).

110
      .. versionadded:: 3.3
111

112 113
   .. versionchanged:: 3.1
      Support for the :keyword:`with` statement was added.
114

115 116 117
   .. versionchanged:: 3.3
      The :meth:`fileno`, :meth:`readable`, :meth:`seekable`, :meth:`writable`,
      :meth:`read1` and :meth:`readinto` methods were added.
118

119
   .. versionchanged:: 3.3
120 121
      Support was added for *filename* being a :term:`file object` instead of an
      actual filename.
122

123 124 125 126
   .. versionchanged:: 3.3
      The ``'a'`` (append) mode was added, along with support for reading
      multi-stream files.

127 128 129
   .. versionchanged:: 3.4
      The ``'x'`` (exclusive creation) mode was added.

130 131 132 133
   .. versionchanged:: 3.5
      The :meth:`~io.BufferedIOBase.read` method now accepts an argument of
      ``None``.

134 135 136
   .. versionchanged:: 3.6
      Accepts a :term:`path-like object`.

137

138 139
Incremental (de)compression
---------------------------
140

141
.. class:: BZ2Compressor(compresslevel=9)
142

143 144 145
   Create a new compressor object. This object may be used to compress data
   incrementally. For one-shot compression, use the :func:`compress` function
   instead.
146

147 148
   *compresslevel*, if given, must be a number between ``1`` and ``9``. The
   default is ``9``.
149

150
   .. method:: compress(data)
151

152 153
      Provide data to the compressor object. Returns a chunk of compressed data
      if possible, or an empty byte string otherwise.
154

155 156
      When you have finished providing data to the compressor, call the
      :meth:`flush` method to finish the compression process.
157 158


159
   .. method:: flush()
160

161 162
      Finish the compression process. Returns the compressed data left in
      internal buffers.
163

164
      The compressor object may not be used after this method has been called.
165 166


167
.. class:: BZ2Decompressor()
168

169 170 171
   Create a new decompressor object. This object may be used to decompress data
   incrementally. For one-shot compression, use the :func:`decompress` function
   instead.
172

173 174 175 176 177 178
   .. note::
      This class does not transparently handle inputs containing multiple
      compressed streams, unlike :func:`decompress` and :class:`BZ2File`. If
      you need to decompress a multi-stream input with :class:`BZ2Decompressor`,
      you must use a new decompressor for each stream.

179
   .. method:: decompress(data, max_length=-1)
180

181 182 183 184 185
      Decompress *data* (a :term:`bytes-like object`), returning
      uncompressed data as bytes. Some of *data* may be buffered
      internally, for use in later calls to :meth:`decompress`. The
      returned data should be concatenated with the output of any
      previous calls to :meth:`decompress`.
186

187 188 189 190 191 192
      If *max_length* is nonnegative, returns at most *max_length*
      bytes of decompressed data. If this limit is reached and further
      output can be produced, the :attr:`~.needs_input` attribute will
      be set to ``False``. In this case, the next call to
      :meth:`~.decompress` may provide *data* as ``b''`` to obtain
      more of the output.
193

194 195 196 197 198 199 200 201 202 203 204
      If all of the input data was decompressed and returned (either
      because this was less than *max_length* bytes, or because
      *max_length* was negative), the :attr:`~.needs_input` attribute
      will be set to ``True``.

      Attempting to decompress data after the end of stream is reached
      raises an `EOFError`.  Any data found after the end of the
      stream is ignored and saved in the :attr:`~.unused_data` attribute.

      .. versionchanged:: 3.5
         Added the *max_length* parameter.
205

206
   .. attribute:: eof
207

208
      ``True`` if the end-of-stream marker has been reached.
209

210
      .. versionadded:: 3.3
211 212


213
   .. attribute:: unused_data
214

215
      Data found after the end of the compressed stream.
216

217 218 219
      If this attribute is accessed before the end of the stream has been
      reached, its value will be ``b''``.

220 221 222 223 224 225 226
   .. attribute:: needs_input

      ``False`` if the :meth:`.decompress` method can provide more
      decompressed data before requiring new uncompressed input.

      .. versionadded:: 3.5

227 228 229 230

One-shot (de)compression
------------------------

231
.. function:: compress(data, compresslevel=9)
232

233
   Compress *data*.
234

235 236
   *compresslevel*, if given, must be a number between ``1`` and ``9``. The
   default is ``9``.
237

238
   For incremental compression, use a :class:`BZ2Compressor` instead.
239 240 241 242


.. function:: decompress(data)

243 244
   Decompress *data*.

245 246 247
   If *data* is the concatenation of multiple compressed streams, decompress
   all of the streams.

248
   For incremental decompression, use a :class:`BZ2Decompressor` instead.
249

250 251 252
   .. versionchanged:: 3.3
      Support for multi-stream inputs was added.