Skip to content

Instantly share code, notes, and snippets.

@gormih
Created August 28, 2017 12:36
Show Gist options
  • Save gormih/c72a830ab6b302569b87d45087265a08 to your computer and use it in GitHub Desktop.
Save gormih/c72a830ab6b302569b87d45087265a08 to your computer and use it in GitHub Desktop.
import zipfile
zip_ref = zipfile.ZipFile(current_zip_full_path, 'r')
extract_to = current_zip_full_path + '_temp'
zip_ref.extractall(extract_to)
zip_ref.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment