Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 1 | |
| 2 | :mod:`bz2` --- Compression compatible with :program:`bzip2` |
| 3 | =========================================================== |
| 4 | |
| 5 | .. module:: bz2 |
| 6 | :synopsis: Interface to compression and decompression routines compatible with bzip2. |
| 7 | .. moduleauthor:: Gustavo Niemeyer <niemeyer@conectiva.com> |
| 8 | .. sectionauthor:: Gustavo Niemeyer <niemeyer@conectiva.com> |
| 9 | |
| 10 | |
| 11 | .. versionadded:: 2.3 |
| 12 | |
| 13 | This module provides a comprehensive interface for the bz2 compression library. |
| 14 | It implements a complete file interface, one-shot (de)compression functions, and |
| 15 | types for sequential (de)compression. |
| 16 | |
Mark Summerfield | aea6e59 | 2007-11-05 09:22:48 +0000 | [diff] [blame] | 17 | For other archive formats, see the :mod:`gzip`, :mod:`zipfile`, and |
| 18 | :mod:`tarfile` modules. |
| 19 | |
| 20 | Here is a summary of the features offered by the bz2 module: |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 21 | |
| 22 | * :class:`BZ2File` class implements a complete file interface, including |
| 23 | :meth:`readline`, :meth:`readlines`, :meth:`writelines`, :meth:`seek`, etc; |
| 24 | |
| 25 | * :class:`BZ2File` class implements emulated :meth:`seek` support; |
| 26 | |
| 27 | * :class:`BZ2File` class implements universal newline support; |
| 28 | |
| 29 | * :class:`BZ2File` class offers an optimized line iteration using the readahead |
| 30 | algorithm borrowed from file objects; |
| 31 | |
| 32 | * Sequential (de)compression supported by :class:`BZ2Compressor` and |
| 33 | :class:`BZ2Decompressor` classes; |
| 34 | |
| 35 | * One-shot (de)compression supported by :func:`compress` and :func:`decompress` |
| 36 | functions; |
| 37 | |
Mark Summerfield | aea6e59 | 2007-11-05 09:22:48 +0000 | [diff] [blame] | 38 | * Thread safety uses individual locking mechanism. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 39 | |
| 40 | |
| 41 | (De)compression of files |
| 42 | ------------------------ |
| 43 | |
| 44 | Handling of compressed files is offered by the :class:`BZ2File` class. |
| 45 | |
| 46 | |
| 47 | .. class:: BZ2File(filename[, mode[, buffering[, compresslevel]]]) |
| 48 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 49 | Open a bz2 file. Mode can be either ``'r'`` or ``'w'``, for reading (default) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 50 | or writing. When opened for writing, the file will be created if it doesn't |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 51 | exist, and truncated otherwise. If *buffering* is given, ``0`` means |
| 52 | unbuffered, and larger numbers specify the buffer size; the default is |
| 53 | ``0``. If *compresslevel* is given, it must be a number between ``1`` and |
| 54 | ``9``; the default is ``9``. Add a ``'U'`` to mode to open the file for input |
| 55 | with universal newline support. Any line ending in the input file will be |
| 56 | seen as a ``'\n'`` in Python. Also, a file so opened gains the attribute |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 57 | :attr:`newlines`; the value for this attribute is one of ``None`` (no newline |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 58 | read yet), ``'\r'``, ``'\n'``, ``'\r\n'`` or a tuple containing all the |
| 59 | newline types seen. Universal newlines are available only when |
| 60 | reading. Instances support iteration in the same way as normal :class:`file` |
| 61 | instances. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 62 | |
| 63 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 64 | .. method:: close() |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 65 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 66 | Close the file. Sets data attribute :attr:`closed` to true. A closed file |
| 67 | cannot be used for further I/O operations. :meth:`close` may be called |
| 68 | more than once without error. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 69 | |
| 70 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 71 | .. method:: read([size]) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 72 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 73 | Read at most *size* uncompressed bytes, returned as a string. If the |
| 74 | *size* argument is negative or omitted, read until EOF is reached. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 75 | |
| 76 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 77 | .. method:: readline([size]) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 78 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 79 | Return the next line from the file, as a string, retaining newline. A |
| 80 | non-negative *size* argument limits the maximum number of bytes to return |
| 81 | (an incomplete line may be returned then). Return an empty string at EOF. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 82 | |
| 83 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 84 | .. method:: readlines([size]) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 85 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 86 | Return a list of lines read. The optional *size* argument, if given, is an |
| 87 | approximate bound on the total number of bytes in the lines returned. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 88 | |
| 89 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 90 | .. method:: xreadlines() |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 91 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 92 | For backward compatibility. :class:`BZ2File` objects now include the |
| 93 | performance optimizations previously implemented in the :mod:`xreadlines` |
| 94 | module. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 95 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 96 | .. deprecated:: 2.3 |
| 97 | This exists only for compatibility with the method by this name on |
| 98 | :class:`file` objects, which is deprecated. Use ``for line in file`` |
| 99 | instead. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 100 | |
| 101 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 102 | .. method:: seek(offset[, whence]) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 103 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 104 | Move to new file position. Argument *offset* is a byte count. Optional |
| 105 | argument *whence* defaults to ``os.SEEK_SET`` or ``0`` (offset from start |
| 106 | of file; offset should be ``>= 0``); other values are ``os.SEEK_CUR`` or |
| 107 | ``1`` (move relative to current position; offset can be positive or |
| 108 | negative), and ``os.SEEK_END`` or ``2`` (move relative to end of file; |
| 109 | offset is usually negative, although many platforms allow seeking beyond |
| 110 | the end of a file). |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 111 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 112 | Note that seeking of bz2 files is emulated, and depending on the |
| 113 | parameters the operation may be extremely slow. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 114 | |
| 115 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 116 | .. method:: tell() |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 117 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 118 | Return the current file position, an integer (may be a long integer). |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 119 | |
| 120 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 121 | .. method:: write(data) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 122 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 123 | Write string *data* to file. Note that due to buffering, :meth:`close` may |
| 124 | be needed before the file on disk reflects the data written. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 125 | |
| 126 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 127 | .. method:: writelines(sequence_of_strings) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 128 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 129 | Write the sequence of strings to the file. Note that newlines are not |
| 130 | added. The sequence can be any iterable object producing strings. This is |
| 131 | equivalent to calling write() for each string. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 132 | |
| 133 | |
| 134 | Sequential (de)compression |
| 135 | -------------------------- |
| 136 | |
| 137 | Sequential compression and decompression is done using the classes |
| 138 | :class:`BZ2Compressor` and :class:`BZ2Decompressor`. |
| 139 | |
| 140 | |
| 141 | .. class:: BZ2Compressor([compresslevel]) |
| 142 | |
| 143 | Create a new compressor object. This object may be used to compress data |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 144 | sequentially. If you want to compress data in one shot, use the |
| 145 | :func:`compress` function instead. The *compresslevel* parameter, if given, |
| 146 | must be a number between ``1`` and ``9``; the default is ``9``. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 147 | |
| 148 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 149 | .. method:: compress(data) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 150 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 151 | Provide more data to the compressor object. It will return chunks of |
| 152 | compressed data whenever possible. When you've finished providing data to |
| 153 | compress, call the :meth:`flush` method to finish the compression process, |
| 154 | and return what is left in internal buffers. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 155 | |
| 156 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 157 | .. method:: flush() |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 158 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 159 | Finish the compression process and return what is left in internal |
| 160 | buffers. You must not use the compressor object after calling this method. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 161 | |
| 162 | |
| 163 | .. class:: BZ2Decompressor() |
| 164 | |
| 165 | Create a new decompressor object. This object may be used to decompress data |
| 166 | sequentially. If you want to decompress data in one shot, use the |
| 167 | :func:`decompress` function instead. |
| 168 | |
| 169 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 170 | .. method:: decompress(data) |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 171 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 172 | Provide more data to the decompressor object. It will return chunks of |
| 173 | decompressed data whenever possible. If you try to decompress data after |
| 174 | the end of stream is found, :exc:`EOFError` will be raised. If any data |
| 175 | was found after the end of stream, it'll be ignored and saved in |
| 176 | :attr:`unused_data` attribute. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 177 | |
| 178 | |
| 179 | One-shot (de)compression |
| 180 | ------------------------ |
| 181 | |
| 182 | One-shot compression and decompression is provided through the :func:`compress` |
| 183 | and :func:`decompress` functions. |
| 184 | |
| 185 | |
| 186 | .. function:: compress(data[, compresslevel]) |
| 187 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 188 | Compress *data* in one shot. If you want to compress data sequentially, use |
| 189 | an instance of :class:`BZ2Compressor` instead. The *compresslevel* parameter, |
| 190 | if given, must be a number between ``1`` and ``9``; the default is ``9``. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 191 | |
| 192 | |
| 193 | .. function:: decompress(data) |
| 194 | |
Benjamin Peterson | c7b0592 | 2008-04-25 01:29:10 +0000 | [diff] [blame] | 195 | Decompress *data* in one shot. If you want to decompress data sequentially, |
| 196 | use an instance of :class:`BZ2Decompressor` instead. |
Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 197 | |