7.15 zipfile -- Trabajar con archivos ZIP

El formato de fichero ZIP es un estándar de empaquetado y compresión. Este módulo proporciona herramientas para crear, leer, escribir, añadir datos y enumerar contenidos de un archivo ZIP.

Los atributos disponibles en este módulo son: The available attributes of this module are:

error
The error raised for bad ZIP files.

_debug
Level of printing, defaults to 1.

ZipFile (...)
The class for reading and writing ZIP files. See ``ZipFile Objects'' (section ) for constructor details.

is_zipfile (path)
Returns true if path is a valid ZIP file based on its magic number, otherwise returns false. This module does not currently handle ZIP files which have appended comments.

zip2date (zdate)
Return (year, month, day) for a ZIP date code.

zip2time (ztime)
Return (hour, minute, second) for a ZIP time code.

date2zip (year, month, day)
Return a ZIP date code.

time2zip (hour, minute, second)
Return a ZIP time code.

ZIP_STORED
The numeric constant (0) for an uncompressed archive member.

ZIP_DEFLATED
The numeric constant for the usual ZIP compression method. This requires the zlib module. No other compression methods are currently supported.

Más informació en:

XXX point to ZIP format definition

XXX point to Info-ZIP home page; mention WiZ


Subsections

Ver Sobre este documento... para obtener información sobre sugerencias.