Skip to content

Instantly share code, notes, and snippets.

@hazadus
Created September 30, 2022 14:36
Show Gist options
  • Save hazadus/6e4d31752867b27db3f59e1b503ab64d to your computer and use it in GitHub Desktop.
Save hazadus/6e4d31752867b27db3f59e1b503ab64d to your computer and use it in GitHub Desktop.
unzip
import zipfile
def unzip(zip_filename):
zip_file = zipfile.ZipFile(zip_filename, 'r')
for zipped_file in zip_file.namelist():
zip_file.extract(zipped_file)
zip_file.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment