Skip to content

Instantly share code, notes, and snippets.

@ShawonAshraf
Created March 29, 2021 14:18
Show Gist options
  • Save ShawonAshraf/47a286a01af9961e3e1fa97ae7d810cf to your computer and use it in GitHub Desktop.
Save ShawonAshraf/47a286a01af9961e3e1fa97ae7d810cf to your computer and use it in GitHub Desktop.
Unzip zip files in python
import zipfile
zip_ref = zipfile.ZipFile("arc.zip", "r") # path to zipfile
zip_ref.extractall("target") # target dir
zip_ref.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment