• Home
  • Raw
  • Download

Lines Matching refs:ZIP

1 :mod:`zipfile` --- Work with ZIP archives
5 :synopsis: Read and write ZIP-format archive files.
15 The ZIP file format is a common archive and compression standard. This module
16 provides tools to create, read, write, append, and list a ZIP file. Any
20 This module does not currently handle multi-disk ZIP files.
21 It can handle ZIP files that use the ZIP64 extensions
22 (that is ZIP files that are more than 4 GByte in size). It supports
23 decryption of encrypted files in ZIP archives, but it currently cannot
31 The error raised for bad ZIP files (old name: ``zipfile.error``).
36 The error raised when a ZIP file would require ZIP64 functionality but that has
43 The class for reading and writing ZIP files. See section
49 Class for creating ZIP archives containing Python libraries.
66 Returns ``True`` if *filename* is a valid ZIP file based on its magic number,
79 The numeric constant for the usual ZIP compression method. This requires the
86 Documentation on the ZIP file format by Phil Katz, the creator of the format and
89 `Info-ZIP Home Page <http://www.info-zip.org/>`_
90 Information about the Info-ZIP project's ZIP archive programs and development
102 Open a ZIP file, where *file* can be either a path to a file (a string) or a
105 existing file. If *mode* is ``'a'`` and *file* refers to an existing ZIP
107 ZIP file, then a new ZIP archive is appended to the file. This is meant for
108 adding a ZIP archive to another file (such as :file:`python.exe`).
113 *compression* is the ZIP compression method to use when writing the archive,
118 ``True`` zipfile will create ZIP files that use the ZIP64 extensions when
120 will raise an exception when the ZIP file would require ZIP64 extensions.
128 ZIP structures for an empty archive will be written to the file.
157 archive. The objects are in the same order as their entries in the actual ZIP
201 ZIP file that contains members with duplicate names.
293 There is no official file name encoding for ZIP files. If you have unicode file
344 The comment text associated with the ZIP file. If assigning a comment to a
389 information about a single member of the ZIP archive.
422 The ZIP file format does not support timestamps before 1980.
443 System which created ZIP archive.
448 PKZIP version which created ZIP archive.
463 ZIP flag bits.
508 with ZIP archives.
510 If you want to create a new ZIP archive, specify its name after the :option:`-c`
523 If you want to extract a ZIP archive into the specified directory, use
530 For a list of the files in a ZIP archive, use the :option:`-l` option: