lzma.LZMADecompressor.eof
  • References/Python/Python/Data Compression

eof True if the end-of-stream marker has been reached.

2025-01-10 15:47:30
zlib.Compress.compress()
  • References/Python/Python/Data Compression

Compress.compress(data) Compress data, returning a bytes object containing compressed data for at least part of the

2025-01-10 15:47:30
bz2.BZ2File
  • References/Python/Python/Data Compression

class bz2.BZ2File(filename, mode='r', buffering=None, compresslevel=9) Open a bzip2-compressed file in binary mode.

2025-01-10 15:47:30
zlib.Decompress.decompress()
  • References/Python/Python/Data Compression

Decompress.decompress(data[, max_length]) Decompress data, returning a bytes object containing the uncompressed data

2025-01-10 15:47:30
zlib.crc32()
  • References/Python/Python/Data Compression

zlib.crc32(data[, value]) Computes a CRC (Cyclic Redundancy Check) checksum of data. The result is an unsigned 32-bit

2025-01-10 15:47:30
zipfile.ZipInfo.compress_size
  • References/Python/Python/Data Compression

ZipInfo.compress_size Size of the compressed data.

2025-01-10 15:47:30
bz2.BZ2Decompressor
  • References/Python/Python/Data Compression

class bz2.BZ2Decompressor Create a new decompressor object. This object may be used to decompress data incrementally. For one-shot

2025-01-10 15:47:30
tarfile.StreamError
  • References/Python/Python/Data Compression

exception tarfile.StreamError Is raised for the limitations that are typical for stream-like TarFile objects.

2025-01-10 15:47:30
zipfile.ZipFile.testzip()
  • References/Python/Python/Data Compression

ZipFile.testzip() Read all the files in the archive and check their CRC’s and file headers. Return the name of the first bad

2025-01-10 15:47:30
tarfile.TarInfo.frombuf()
  • References/Python/Python/Data Compression

classmethod TarInfo.frombuf(buf, encoding, errors) Create and return a TarInfo object from string buffer buf

2025-01-10 15:47:30