lzma.LZMAFile
  • References/Python/Python/Data Compression

class lzma.LZMAFile(filename=None, mode="r", *, format=None, check=-1, preset=None, filters=None) Open an LZMA-compressed file

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

ZipInfo.comment Comment for the individual archive member.

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

ZipInfo.reserved Must be zero.

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

ZipFile.read(name, pwd=None) Return the bytes of the file name in the archive. name is the name of the file

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

class tarfile.TarInfo(name="") Create a TarInfo object.

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

ZipFile.infolist() Return a list containing a ZipInfo object for each member of the archive. The objects are in

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

classmethod TarFile.open(...) Alternative constructor. The tarfile.open() function is actually a shortcut to this

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

ZipFile.getinfo(name) Return a ZipInfo object with information about the archive member name. Calling

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

exception tarfile.ExtractError Is raised for non-fatal errors when using TarFile.extract(), but only if

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

TarInfo.tobuf(format=DEFAULT_FORMAT, encoding=ENCODING, errors='surrogateescape') Create a string buffer from a TarInfo

2025-01-10 15:47:30