bz2
— Support for bzip2 compression¶
Kod źródłowy: Lib/bz2.py
This module provides a comprehensive interface for compressing and decompressing data using the bzip2 compression algorithm.
The bz2
module contains:
The
open()
function andBZ2File
class for reading and writing compressed files.The
BZ2Compressor
andBZ2Decompressor
classes for incremental (de)compression.The
compress()
anddecompress()
functions for one-shot (de)compression.
(De)compression of files¶
- bz2.open(filename, mode='rb', compresslevel=9, encoding=None, errors=None, newline=None)¶
Open a bzip2-compressed file in binary or text mode, returning a file object.
As with the constructor for
BZ2File
, the filename argument can be an actual filename (astr
orbytes
object), or an existing file object to read from or write to.The mode argument can be any of
'r'
,'rb'
,'w'
,'wb'
,'x'
,'xb'
,'a'
or'ab'
for binary mode, or'rt'
,'wt'
,'xt'
, or'at'
for text mode. The default is'rb'
.The compresslevel argument is an integer from 1 to 9, as for the
BZ2File
constructor.For binary mode, this function is equivalent to the
BZ2File
constructor:BZ2File(filename, mode, compresslevel=compresslevel)
. In this case, the encoding, errors and newline arguments must not be provided.For text mode, a
BZ2File
object is created, and wrapped in anio.TextIOWrapper
instance with the specified encoding, error handling behavior, and line ending(s).Dodane w wersji 3.3.
Zmienione w wersji 3.4: The
'x'
(exclusive creation) mode was added.Zmienione w wersji 3.6: Accepts a path-like object.
- class bz2.BZ2File(filename, mode='r', *, compresslevel=9)¶
Open a bzip2-compressed file in binary mode.
If filename is a
str
orbytes
object, open the named file directly. Otherwise, filename should be a file object, which will be used to read or write the compressed data.The mode argument can be either
'r'
for reading (default),'w'
for overwriting,'x'
for exclusive creation, or'a'
for appending. These can equivalently be given as'rb'
,'wb'
,'xb'
and'ab'
respectively.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'
.If mode is
'w'
or'a'
, compresslevel can be an integer between1
and9
specifying the level of compression:1
produces the least compression, and9
(default) produces the most compression.If mode is
'r'
, the input file may be the concatenation of multiple compressed streams.BZ2File
provides all of the members specified by theio.BufferedIOBase
, except fordetach()
andtruncate()
. Iteration and thewith
statement are supported.BZ2File
also provides the following methods and attributes:- peek([n])¶
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.
Informacja
While calling
peek()
does not change the file position of theBZ2File
, it may change the position of the underlying file object (e.g. if theBZ2File
was constructed by passing a file object for filename).Dodane w wersji 3.3.
- fileno()¶
Return the file descriptor for the underlying file.
Dodane w wersji 3.3.
- readable()¶
Return whether the file was opened for reading.
Dodane w wersji 3.3.
- seekable()¶
Return whether the file supports seeking.
Dodane w wersji 3.3.
- writable()¶
Return whether the file was opened for writing.
Dodane w wersji 3.3.
- read1(size=-1)¶
Read up to size uncompressed bytes, while trying to avoid making multiple reads from the underlying stream. Reads up to a buffer’s worth of data if size is negative.
Returns
b''
if the file is at EOF.Dodane w wersji 3.3.
- readinto(b)¶
Read bytes into b.
Returns the number of bytes read (0 for EOF).
Dodane w wersji 3.3.
- mode¶
'rb'
для чтения и'wb'
для записи.Dodane w wersji 3.13.
- name¶
The bzip2 file name. Equivalent to the
name
attribute of the underlying file object.Dodane w wersji 3.13.
Zmienione w wersji 3.1: Support for the
with
statement was added.Zmienione w wersji 3.3: Support was added for filename being a file object instead of an actual filename.
The
'a'
(append) mode was added, along with support for reading multi-stream files.Zmienione w wersji 3.4: The
'x'
(exclusive creation) mode was added.Zmienione w wersji 3.5: Метод
read()
тепер приймає аргументNone
.Zmienione w wersji 3.6: Accepts a path-like object.
Zmienione w wersji 3.9: The buffering parameter has been removed. It was ignored and deprecated since Python 3.0. Pass an open file object to control how the file is opened.
The compresslevel parameter became keyword-only.
Incremental (de)compression¶
- class bz2.BZ2Compressor(compresslevel=9)¶
Create a new compressor object. This object may be used to compress data incrementally. For one-shot compression, use the
compress()
function instead.compresslevel, if given, must be an integer between
1
and9
. The default is9
.- compress(data)¶
Provide data to the compressor object. Returns a chunk of compressed data if possible, or an empty byte string otherwise.
When you have finished providing data to the compressor, call the
flush()
method to finish the compression process.
- flush()¶
Finish the compression process. Returns the compressed data left in internal buffers.
The compressor object may not be used after this method has been called.
- class bz2.BZ2Decompressor¶
Create a new decompressor object. This object may be used to decompress data incrementally. For one-shot compression, use the
decompress()
function instead.Informacja
This class does not transparently handle inputs containing multiple compressed streams, unlike
decompress()
andBZ2File
. If you need to decompress a multi-stream input withBZ2Decompressor
, you must use a new decompressor for each stream.- decompress(data, max_length=-1)¶
Розпакуйте дані (bytes-like object), повертаючи нестиснуті дані у вигляді байтів. Деякі з даних можуть бути збережені у внутрішньому буфері для використання в подальших викликах
decompress()
. Повернуті дані мають бути об’єднані з результатами будь-яких попередніх викликівdecompress()
.Якщо max_length є невід’ємним, повертає щонайбільше max_length байтів розпакованих даних. Якщо цей ліміт буде досягнуто, і буде створено подальший вихід, атрибут
needs_input
буде встановлено наFalse
. У цьому випадку наступний викликdecompress()
може надати data якb''
, щоб отримати більше вихідних даних.Якщо всі вхідні дані було розпаковано та повернуто (або через те, що вони були меншими за max_length байтів, або через те, що max_length було від’ємним), для атрибута
needs_input
буде встановлено значенняTrue
.Попытка распаковать данные после достижения конца потока вызывает ошибку
EOFError
. Любые данные, найденные после окончания потока, игнорируются и сохраняются в атрибутеunused_data
.Zmienione w wersji 3.5: Додано параметр max_length.
- eof¶
True
, якщо досягнуто маркера кінця потоку.Dodane w wersji 3.3.
- unused_data¶
Дані знайдено після закінчення стисненого потоку.
If this attribute is accessed before the end of the stream has been reached, its value will be
b''
.
- needs_input¶
False
, якщо методdecompress()
може надати більше розпакованих даних перед запитом нового нестисненого введення.Dodane w wersji 3.5.
One-shot (de)compression¶
- bz2.compress(data, compresslevel=9)¶
Compress data, a bytes-like object.
compresslevel, if given, must be an integer between
1
and9
. The default is9
.For incremental compression, use a
BZ2Compressor
instead.
- bz2.decompress(data)¶
Decompress data, a bytes-like object.
If data is the concatenation of multiple compressed streams, decompress all of the streams.
For incremental decompression, use a
BZ2Decompressor
instead.Zmienione w wersji 3.3: Support for multi-stream inputs was added.
Przykłady użycia¶
Below are some examples of typical usage of the bz2
module.
Using compress()
and decompress()
to demonstrate round-trip compression:
>>> import bz2
>>> data = b"""\
... Donec rhoncus quis sapien sit amet molestie. Fusce scelerisque vel augue
... nec ullamcorper. Nam rutrum pretium placerat. Aliquam vel tristique lorem,
... sit amet cursus ante. In interdum laoreet mi, sit amet ultrices purus
... pulvinar a. Nam gravida euismod magna, non varius justo tincidunt feugiat.
... Aliquam pharetra lacus non risus vehicula rutrum. Maecenas aliquam leo
... felis. Pellentesque semper nunc sit amet nibh ullamcorper, ac elementum
... dolor luctus. Curabitur lacinia mi ornare consectetur vestibulum."""
>>> c = bz2.compress(data)
>>> len(data) / len(c) # Data compression ratio
1.513595166163142
>>> d = bz2.decompress(c)
>>> data == d # Check equality to original object after round-trip
True
Using BZ2Compressor
for incremental compression:
>>> import bz2
>>> def gen_data(chunks=10, chunksize=1000):
... """Yield incremental blocks of chunksize bytes."""
... for _ in range(chunks):
... yield b"z" * chunksize
...
>>> comp = bz2.BZ2Compressor()
>>> out = b""
>>> for chunk in gen_data():
... # Provide data to the compressor object
... out = out + comp.compress(chunk)
...
>>> # Finish the compression process. Call this once you have
>>> # finished providing data to the compressor.
>>> out = out + comp.flush()
The example above uses a very „nonrandom” stream of data
(a stream of b"z"
chunks). Random data tends to compress poorly,
while ordered, repetitive data usually yields a high compression ratio.
Writing and reading a bzip2-compressed file in binary mode:
>>> import bz2
>>> data = b"""\
... Donec rhoncus quis sapien sit amet molestie. Fusce scelerisque vel augue
... nec ullamcorper. Nam rutrum pretium placerat. Aliquam vel tristique lorem,
... sit amet cursus ante. In interdum laoreet mi, sit amet ultrices purus
... pulvinar a. Nam gravida euismod magna, non varius justo tincidunt feugiat.
... Aliquam pharetra lacus non risus vehicula rutrum. Maecenas aliquam leo
... felis. Pellentesque semper nunc sit amet nibh ullamcorper, ac elementum
... dolor luctus. Curabitur lacinia mi ornare consectetur vestibulum."""
>>> with bz2.open("myfile.bz2", "wb") as f:
... # Write compressed data to file
... unused = f.write(data)
...
>>> with bz2.open("myfile.bz2", "rb") as f:
... # Decompress data from file
... content = f.read()
...
>>> content == data # Check equality to original object after round-trip
True