Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. import zipfile
  2.  
  3. archivo_zip = zipfile.ZipFile('comprimido.zip', mode='w')
  4.  
  5. archivo_zip.write('CatalogoProductos.xml')
  6.  
  7. archivo_zip.close()