Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created January 28, 2018 01:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fhernd/bf7c5989c00f288363a644692d3a4a8a to your computer and use it in GitHub Desktop.
Save Fhernd/bf7c5989c00f288363a644692d3a4a8a to your computer and use it in GitHub Desktop.
Comprimir archivo en Python.
import zipfile
archivo_zip = zipfile.ZipFile('comprimido.zip', mode='w')
archivo_zip.write('CatalogoProductos.xml')
archivo_zip.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment