Skip to content

Instantly share code, notes, and snippets.

@anishmenon
Last active August 29, 2015 14:21
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 anishmenon/de24c22a72c86492a485 to your computer and use it in GitHub Desktop.
Save anishmenon/de24c22a72c86492a485 to your computer and use it in GitHub Desktop.
filenames = ["/home/node4/anish/varnan/1.jpg", "/home/node4/anish/varnan/2.jpg"]
import zipfile
import glob, os
file = zipfile.ZipFile("/home/node4/anish/download.zip", "w")
for name in filenames:
file.write(name, os.path.basename(name), zipfile.ZIP_DEFLATED)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment