tarfile.TarFile.next()
  • References/Python/Python/Data Compression

TarFile.next() Return the next member of the archive as a TarInfo object, when TarFile is opened for

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

classmethod TarInfo.fromtarfile(tarfile) Read the next member from the TarFile object tarfile and return

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

exception zipfile.BadZipfile Alias of BadZipFile, for compatibility with older Python versions.

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

zlib.adler32(data[, value]) Computes an Adler-32 checksum of data. (An Adler-32 checksum is almost as reliable as a

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.TarInfo.name
  • References/Python/Python/Data Compression

TarInfo.name Name of the archive member.

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

TarFile.add(name, arcname=None, recursive=True, exclude=None, *, filter=None) Add the file name to the archive. name

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

TarFile.list(verbose=True, *, members=None) Print a table of contents to sys.stdout. If verbose is

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

zipfile.is_zipfile(filename) Returns True if filename is a valid ZIP file based on its magic number, otherwise

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