bz2.BZ2Decompressor.decompress()
  • References/Python/Python/Data Compression

decompress(data, max_length=-1) Decompress data (a bytes-like object), returning

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

gzip.decompress(data) Decompress the data, returning a

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

exception tarfile.HeaderError Is raised by TarInfo.frombuf() if the buffer it gets is invalid.

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

ZipFile.extractall(path=None, members=None, pwd=None) Extract all members from the archive to the current working directory

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

tarfile.is_tarfile(name) Return

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

TarInfo.mode Permission bits.

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

ZipFile.write(filename, arcname=None, compress_type=None) Write the file named filename to the archive, giving it the

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

TarFile.extract(member, path="", set_attrs=True, *, numeric_owner=False) Extract a member from the archive to the current working

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

zlib.decompress(data[, wbits[, bufsize]]) Decompresses the bytes in data, returning a bytes object containing the uncompressed

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

ZipFile.open(name, mode='r', pwd=None) Extract a member from the archive as a file-like object (ZipExtFile). name is

2025-01-10 15:47:30