blob: 85cdc16a7d78d4ac84bca9a4246b78a6ade130cc [file] [log] [blame]
Antoine Pitrou37dc5f82011-04-03 17:05:46 +02001:mod:`bz2` --- Support for :program:`bzip2` compression
2=======================================================
Georg Brandl116aa622007-08-15 14:28:22 +00003
4.. module:: bz2
Antoine Pitrou37dc5f82011-04-03 17:05:46 +02005 :synopsis: Interfaces for bzip2 compression and decompression.
Terry Jan Reedyfa089b92016-06-11 15:02:54 -04006
Georg Brandl116aa622007-08-15 14:28:22 +00007.. moduleauthor:: Gustavo Niemeyer <niemeyer@conectiva.com>
Antoine Pitrou37dc5f82011-04-03 17:05:46 +02008.. moduleauthor:: Nadeem Vawda <nadeem.vawda@gmail.com>
Georg Brandl116aa622007-08-15 14:28:22 +00009.. sectionauthor:: Gustavo Niemeyer <niemeyer@conectiva.com>
Antoine Pitrou37dc5f82011-04-03 17:05:46 +020010.. sectionauthor:: Nadeem Vawda <nadeem.vawda@gmail.com>
Georg Brandl116aa622007-08-15 14:28:22 +000011
Terry Jan Reedyfa089b92016-06-11 15:02:54 -040012**Source code:** :source:`Lib/bz2.py`
13
14--------------
Georg Brandl116aa622007-08-15 14:28:22 +000015
Antoine Pitrou37dc5f82011-04-03 17:05:46 +020016This module provides a comprehensive interface for compressing and
17decompressing data using the bzip2 compression algorithm.
Georg Brandl116aa622007-08-15 14:28:22 +000018
Antoine Pitrou37dc5f82011-04-03 17:05:46 +020019The :mod:`bz2` module contains:
Georg Brandl116aa622007-08-15 14:28:22 +000020
Nadeem Vawdaaf518c12012-06-04 23:32:38 +020021* The :func:`.open` function and :class:`BZ2File` class for reading and
22 writing compressed files.
Antoine Pitrou37dc5f82011-04-03 17:05:46 +020023* The :class:`BZ2Compressor` and :class:`BZ2Decompressor` classes for
24 incremental (de)compression.
25* The :func:`compress` and :func:`decompress` functions for one-shot
26 (de)compression.
Georg Brandl116aa622007-08-15 14:28:22 +000027
Antoine Pitrou37dc5f82011-04-03 17:05:46 +020028All of the classes in this module may safely be accessed from multiple threads.
Georg Brandl116aa622007-08-15 14:28:22 +000029
30
31(De)compression of files
32------------------------
33
Richard Sangerbb668f72019-09-10 03:49:47 +120034.. function:: open(filename, mode='rb', compresslevel=9, encoding=None, errors=None, newline=None)
Nadeem Vawdaaf518c12012-06-04 23:32:38 +020035
36 Open a bzip2-compressed file in binary or text mode, returning a :term:`file
37 object`.
38
39 As with the constructor for :class:`BZ2File`, the *filename* argument can be
40 an actual filename (a :class:`str` or :class:`bytes` object), or an existing
41 file object to read from or write to.
42
43 The *mode* argument can be any of ``'r'``, ``'rb'``, ``'w'``, ``'wb'``,
Nadeem Vawda8a9e99c2013-10-19 00:11:06 +020044 ``'x'``, ``'xb'``, ``'a'`` or ``'ab'`` for binary mode, or ``'rt'``,
45 ``'wt'``, ``'xt'``, or ``'at'`` for text mode. The default is ``'rb'``.
Nadeem Vawdaaf518c12012-06-04 23:32:38 +020046
47 The *compresslevel* argument is an integer from 1 to 9, as for the
48 :class:`BZ2File` constructor.
49
50 For binary mode, this function is equivalent to the :class:`BZ2File`
51 constructor: ``BZ2File(filename, mode, compresslevel=compresslevel)``. In
52 this case, the *encoding*, *errors* and *newline* arguments must not be
53 provided.
54
55 For text mode, a :class:`BZ2File` object is created, and wrapped in an
56 :class:`io.TextIOWrapper` instance with the specified encoding, error
57 handling behavior, and line ending(s).
58
59 .. versionadded:: 3.3
60
Nadeem Vawda8a9e99c2013-10-19 00:11:06 +020061 .. versionchanged:: 3.4
62 The ``'x'`` (exclusive creation) mode was added.
63
Berker Peksag8bdd4482016-10-02 20:07:06 +030064 .. versionchanged:: 3.6
65 Accepts a :term:`path-like object`.
66
Nadeem Vawdaaf518c12012-06-04 23:32:38 +020067
Victor Stinner9baf2422020-01-16 15:33:30 +010068.. class:: BZ2File(filename, mode='r', *, compresslevel=9)
Georg Brandl116aa622007-08-15 14:28:22 +000069
Nadeem Vawdaaf518c12012-06-04 23:32:38 +020070 Open a bzip2-compressed file in binary mode.
Georg Brandl116aa622007-08-15 14:28:22 +000071
Nadeem Vawdaaebcdba2012-06-04 23:31:20 +020072 If *filename* is a :class:`str` or :class:`bytes` object, open the named file
73 directly. Otherwise, *filename* should be a :term:`file object`, which will
74 be used to read or write the compressed data.
Georg Brandl116aa622007-08-15 14:28:22 +000075
Nadeem Vawda200e00a2011-05-27 01:52:16 +020076 The *mode* argument can be either ``'r'`` for reading (default), ``'w'`` for
Nadeem Vawda8a9e99c2013-10-19 00:11:06 +020077 overwriting, ``'x'`` for exclusive creation, or ``'a'`` for appending. These
78 can equivalently be given as ``'rb'``, ``'wb'``, ``'xb'`` and ``'ab'``
79 respectively.
Nadeem Vawda50cb9362012-06-04 23:31:22 +020080
81 If *filename* is a file object (rather than an actual file name), a mode of
82 ``'w'`` does not truncate the file, and is instead equivalent to ``'a'``.
Georg Brandl116aa622007-08-15 14:28:22 +000083
Bradbe6939f2019-05-13 14:09:49 -040084 If *mode* is ``'w'`` or ``'a'``, *compresslevel* can be an integer between
Nadeem Vawda200e00a2011-05-27 01:52:16 +020085 ``1`` and ``9`` specifying the level of compression: ``1`` produces the
86 least compression, and ``9`` (default) produces the most compression.
87
88 If *mode* is ``'r'``, the input file may be the concatenation of multiple
89 compressed streams.
Antoine Pitrou37dc5f82011-04-03 17:05:46 +020090
91 :class:`BZ2File` provides all of the members specified by the
92 :class:`io.BufferedIOBase`, except for :meth:`detach` and :meth:`truncate`.
93 Iteration and the :keyword:`with` statement are supported.
94
95 :class:`BZ2File` also provides the following method:
96
97 .. method:: peek([n])
98
99 Return buffered data without advancing the file position. At least one
100 byte of data will be returned (unless at EOF). The exact number of bytes
101 returned is unspecified.
102
Nadeem Vawda69761042013-12-08 19:47:22 +0100103 .. note:: While calling :meth:`peek` does not change the file position of
104 the :class:`BZ2File`, it may change the position of the underlying file
105 object (e.g. if the :class:`BZ2File` was constructed by passing a file
106 object for *filename*).
107
Antoine Pitrou37dc5f82011-04-03 17:05:46 +0200108 .. versionadded:: 3.3
Benjamin Petersone0124bd2009-03-09 21:04:33 +0000109
Matthias Bussonnierffa198c2018-09-11 03:15:56 +0200110
Benjamin Peterson10745a92009-03-09 21:08:47 +0000111 .. versionchanged:: 3.1
Benjamin Petersone0124bd2009-03-09 21:04:33 +0000112 Support for the :keyword:`with` statement was added.
113
Antoine Pitrou37dc5f82011-04-03 17:05:46 +0200114 .. versionchanged:: 3.3
115 The :meth:`fileno`, :meth:`readable`, :meth:`seekable`, :meth:`writable`,
116 :meth:`read1` and :meth:`readinto` methods were added.
Georg Brandl116aa622007-08-15 14:28:22 +0000117
Antoine Pitrou37dc5f82011-04-03 17:05:46 +0200118 .. versionchanged:: 3.3
Nadeem Vawdaaebcdba2012-06-04 23:31:20 +0200119 Support was added for *filename* being a :term:`file object` instead of an
120 actual filename.
Georg Brandl116aa622007-08-15 14:28:22 +0000121
Nadeem Vawda200e00a2011-05-27 01:52:16 +0200122 .. versionchanged:: 3.3
123 The ``'a'`` (append) mode was added, along with support for reading
124 multi-stream files.
125
Nadeem Vawda8a9e99c2013-10-19 00:11:06 +0200126 .. versionchanged:: 3.4
127 The ``'x'`` (exclusive creation) mode was added.
128
Antoine Pitrou2dbc6e62015-04-11 00:31:01 +0200129 .. versionchanged:: 3.5
130 The :meth:`~io.BufferedIOBase.read` method now accepts an argument of
131 ``None``.
132
Berker Peksag8bdd4482016-10-02 20:07:06 +0300133 .. versionchanged:: 3.6
134 Accepts a :term:`path-like object`.
135
Victor Stinner9baf2422020-01-16 15:33:30 +0100136 .. versionchanged:: 3.9
137 The *buffering* parameter has been removed. It was ignored and deprecated
138 since Python 3.0. Pass an open file object to control how the file is
139 opened.
140
141 The *compresslevel* parameter became keyword-only.
142
Georg Brandl116aa622007-08-15 14:28:22 +0000143
Antoine Pitrou37dc5f82011-04-03 17:05:46 +0200144Incremental (de)compression
145---------------------------
Georg Brandl116aa622007-08-15 14:28:22 +0000146
Georg Brandl0d8f0732009-04-05 22:20:44 +0000147.. class:: BZ2Compressor(compresslevel=9)
Georg Brandl116aa622007-08-15 14:28:22 +0000148
149 Create a new compressor object. This object may be used to compress data
Antoine Pitrou37dc5f82011-04-03 17:05:46 +0200150 incrementally. For one-shot compression, use the :func:`compress` function
151 instead.
152
Bradbe6939f2019-05-13 14:09:49 -0400153 *compresslevel*, if given, must be an integer between ``1`` and ``9``. The
Antoine Pitrou37dc5f82011-04-03 17:05:46 +0200154 default is ``9``.
Georg Brandl116aa622007-08-15 14:28:22 +0000155
Benjamin Petersone41251e2008-04-25 01:59:09 +0000156 .. method:: compress(data)
Georg Brandl116aa622007-08-15 14:28:22 +0000157
Antoine Pitrou37dc5f82011-04-03 17:05:46 +0200158 Provide data to the compressor object. Returns a chunk of compressed data
159 if possible, or an empty byte string otherwise.
160
161 When you have finished providing data to the compressor, call the
162 :meth:`flush` method to finish the compression process.
Georg Brandl116aa622007-08-15 14:28:22 +0000163
164
Benjamin Petersone41251e2008-04-25 01:59:09 +0000165 .. method:: flush()
Georg Brandl116aa622007-08-15 14:28:22 +0000166
Antoine Pitrou37dc5f82011-04-03 17:05:46 +0200167 Finish the compression process. Returns the compressed data left in
168 internal buffers.
169
170 The compressor object may not be used after this method has been called.
Georg Brandl116aa622007-08-15 14:28:22 +0000171
172
173.. class:: BZ2Decompressor()
174
175 Create a new decompressor object. This object may be used to decompress data
Antoine Pitrou37dc5f82011-04-03 17:05:46 +0200176 incrementally. For one-shot compression, use the :func:`decompress` function
177 instead.
Georg Brandl116aa622007-08-15 14:28:22 +0000178
Nadeem Vawda200e00a2011-05-27 01:52:16 +0200179 .. note::
180 This class does not transparently handle inputs containing multiple
181 compressed streams, unlike :func:`decompress` and :class:`BZ2File`. If
182 you need to decompress a multi-stream input with :class:`BZ2Decompressor`,
183 you must use a new decompressor for each stream.
184
Antoine Pitroue71258a2015-02-26 13:08:07 +0100185 .. method:: decompress(data, max_length=-1)
Georg Brandl116aa622007-08-15 14:28:22 +0000186
Antoine Pitroue71258a2015-02-26 13:08:07 +0100187 Decompress *data* (a :term:`bytes-like object`), returning
188 uncompressed data as bytes. Some of *data* may be buffered
189 internally, for use in later calls to :meth:`decompress`. The
190 returned data should be concatenated with the output of any
191 previous calls to :meth:`decompress`.
Antoine Pitrou37dc5f82011-04-03 17:05:46 +0200192
Antoine Pitroue71258a2015-02-26 13:08:07 +0100193 If *max_length* is nonnegative, returns at most *max_length*
194 bytes of decompressed data. If this limit is reached and further
195 output can be produced, the :attr:`~.needs_input` attribute will
196 be set to ``False``. In this case, the next call to
197 :meth:`~.decompress` may provide *data* as ``b''`` to obtain
198 more of the output.
Antoine Pitrou37dc5f82011-04-03 17:05:46 +0200199
Antoine Pitroue71258a2015-02-26 13:08:07 +0100200 If all of the input data was decompressed and returned (either
201 because this was less than *max_length* bytes, or because
202 *max_length* was negative), the :attr:`~.needs_input` attribute
203 will be set to ``True``.
204
205 Attempting to decompress data after the end of stream is reached
206 raises an `EOFError`. Any data found after the end of the
207 stream is ignored and saved in the :attr:`~.unused_data` attribute.
208
209 .. versionchanged:: 3.5
210 Added the *max_length* parameter.
Antoine Pitrou37dc5f82011-04-03 17:05:46 +0200211
212 .. attribute:: eof
213
Serhiy Storchakafbc1c262013-11-29 12:17:13 +0200214 ``True`` if the end-of-stream marker has been reached.
Antoine Pitrou37dc5f82011-04-03 17:05:46 +0200215
216 .. versionadded:: 3.3
217
218
219 .. attribute:: unused_data
220
221 Data found after the end of the compressed stream.
Georg Brandl116aa622007-08-15 14:28:22 +0000222
Nadeem Vawda200e00a2011-05-27 01:52:16 +0200223 If this attribute is accessed before the end of the stream has been
224 reached, its value will be ``b''``.
225
Antoine Pitroue71258a2015-02-26 13:08:07 +0100226 .. attribute:: needs_input
227
228 ``False`` if the :meth:`.decompress` method can provide more
229 decompressed data before requiring new uncompressed input.
230
231 .. versionadded:: 3.5
232
Georg Brandl116aa622007-08-15 14:28:22 +0000233
234One-shot (de)compression
235------------------------
236
Georg Brandl0d8f0732009-04-05 22:20:44 +0000237.. function:: compress(data, compresslevel=9)
Georg Brandl116aa622007-08-15 14:28:22 +0000238
Bradbe6939f2019-05-13 14:09:49 -0400239 Compress *data*, a :term:`bytes-like object <bytes-like object>`.
Antoine Pitrou37dc5f82011-04-03 17:05:46 +0200240
Bradbe6939f2019-05-13 14:09:49 -0400241 *compresslevel*, if given, must be an integer between ``1`` and ``9``. The
Antoine Pitrou37dc5f82011-04-03 17:05:46 +0200242 default is ``9``.
243
244 For incremental compression, use a :class:`BZ2Compressor` instead.
Georg Brandl116aa622007-08-15 14:28:22 +0000245
246
247.. function:: decompress(data)
248
Bradbe6939f2019-05-13 14:09:49 -0400249 Decompress *data*, a :term:`bytes-like object <bytes-like object>`.
Antoine Pitrou37dc5f82011-04-03 17:05:46 +0200250
Nadeem Vawda200e00a2011-05-27 01:52:16 +0200251 If *data* is the concatenation of multiple compressed streams, decompress
252 all of the streams.
253
Antoine Pitrou37dc5f82011-04-03 17:05:46 +0200254 For incremental decompression, use a :class:`BZ2Decompressor` instead.
Georg Brandl116aa622007-08-15 14:28:22 +0000255
Nadeem Vawda200e00a2011-05-27 01:52:16 +0200256 .. versionchanged:: 3.3
257 Support for multi-stream inputs was added.
258
Bradbe6939f2019-05-13 14:09:49 -0400259.. _bz2-usage-examples:
260
261Examples of usage
262-----------------
263
264Below are some examples of typical usage of the :mod:`bz2` module.
265
266Using :func:`compress` and :func:`decompress` to demonstrate round-trip compression:
267
268 >>> import bz2
269
270 >>> data = b"""\
271 ... Donec rhoncus quis sapien sit amet molestie. Fusce scelerisque vel augue
272 ... nec ullamcorper. Nam rutrum pretium placerat. Aliquam vel tristique lorem,
273 ... sit amet cursus ante. In interdum laoreet mi, sit amet ultrices purus
274 ... pulvinar a. Nam gravida euismod magna, non varius justo tincidunt feugiat.
275 ... Aliquam pharetra lacus non risus vehicula rutrum. Maecenas aliquam leo
276 ... felis. Pellentesque semper nunc sit amet nibh ullamcorper, ac elementum
277 ... dolor luctus. Curabitur lacinia mi ornare consectetur vestibulum."""
278
279 >>> c = bz2.compress(data)
280 >>> len(data) / len(c) # Data compression ratio
281 1.513595166163142
282
283 >>> d = bz2.decompress(c)
284 >>> data == d # Check equality to original object after round-trip
285 True
286
287Using :class:`BZ2Compressor` for incremental compression:
288
289 >>> import bz2
290
291 >>> def gen_data(chunks=10, chunksize=1000):
292 ... """Yield incremental blocks of chunksize bytes."""
293 ... for _ in range(chunks):
294 ... yield b"z" * chunksize
295 ...
296 >>> comp = bz2.BZ2Compressor()
297 >>> out = b""
298 >>> for chunk in gen_data():
299 ... # Provide data to the compressor object
300 ... out = out + comp.compress(chunk)
301 ...
302 >>> # Finish the compression process. Call this once you have
303 >>> # finished providing data to the compressor.
304 >>> out = out + comp.flush()
305
306The example above uses a very "nonrandom" stream of data
307(a stream of `b"z"` chunks). Random data tends to compress poorly,
308while ordered, repetitive data usually yields a high compression ratio.
309
310Writing and reading a bzip2-compressed file in binary mode:
311
312 >>> import bz2
313
314 >>> data = b"""\
315 ... Donec rhoncus quis sapien sit amet molestie. Fusce scelerisque vel augue
316 ... nec ullamcorper. Nam rutrum pretium placerat. Aliquam vel tristique lorem,
317 ... sit amet cursus ante. In interdum laoreet mi, sit amet ultrices purus
318 ... pulvinar a. Nam gravida euismod magna, non varius justo tincidunt feugiat.
319 ... Aliquam pharetra lacus non risus vehicula rutrum. Maecenas aliquam leo
320 ... felis. Pellentesque semper nunc sit amet nibh ullamcorper, ac elementum
321 ... dolor luctus. Curabitur lacinia mi ornare consectetur vestibulum."""
322
323 >>> with bz2.open("myfile.bz2", "wb") as f:
324 ... # Write compressed data to file
325 ... unused = f.write(data)
326
327 >>> with bz2.open("myfile.bz2", "rb") as f:
328 ... # Decompress data from file
329 ... content = f.read()
330
331 >>> content == data # Check equality to original object after round-trip
332 True