Skip to content

Instantly share code, notes, and snippets.

@amacal
Last active October 31, 2020 09:02
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 amacal/40004ec711e31a5a52b20be77d34ee08 to your computer and use it in GitHub Desktop.
Save amacal/40004ec711e31a5a52b20be77d34ee08 to your computer and use it in GitHub Desktop.
from zipfile import ZipFile, Path
with ZipFile('archive.zip', 'w') as archive:
# include single file
archive.write('terraform')
# nested file
archive.write('docs-pdf/faq.pdf')
# or inline content
archive.writestr('description.txt', data='content')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment