zipfile.ZipInfo.extra
  • References/Python/Python/Data Compression

ZipInfo.extra Expansion field data. The

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

TarFile.addfile(tarinfo, fileobj=None) Add the TarInfo object tarinfo to the archive. If fileobj

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

TarFile.getmembers() Return the members of the archive as a list of TarInfo objects. The list has the same order

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

flush() Finish the compression process, returning a

2025-01-10 15:47:30
gzip.GzipFile.mtime
  • References/Python/Python/Data Compression

mtime When decompressing, the value of the last modification time field in the most recently read header may be read from this

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

class zipfile.ZipInfo(filename='NoName', date_time=(1980, 1, 1, 0, 0, 0)) Class used to represent information about a member

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

class zipfile.ZipFile(file, mode='r', compression=ZIP_STORED, allowZip64=True) Open a ZIP file, where file can be either

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

ZipInfo.date_time The time and date of the last modification to the archive member. This is a tuple of six values:

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

ZipInfo.extract_version PKZIP version needed to extract archive.

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

zlib.compress(data[, level]) Compresses the bytes in data, returning a bytes object containing compressed data. level

2025-01-10 15:47:30