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

unused_data Data found after the end of the compressed stream. Before the end of the stream

2025-01-10 15:47:30
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.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
zipfile.ZipFile.extract()
  • References/Python/Python/Data Compression

ZipFile.extract(member, path=None, pwd=None) Extract a member from the archive to the current working directory; member

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

TarFile.getnames() Return the members as a list of their names. It has the same order as the list returned by getmembers()

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

TarInfo.issym() Return

2025-01-10 15:47:30
bz2.BZ2Compressor.flush()
  • References/Python/Python/Data Compression

flush() Finish the compression process. Returns the compressed data left in internal buffers. The

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

TarFile.extractfile(member) Extract a member from the archive as a file object. member may be a filename or a TarInfo

2025-01-10 15:47:30