Skip to content

Instantly share code, notes, and snippets.

@suemnjeri
Created April 15, 2021 02:53
Show Gist options
  • Select an option

  • Save suemnjeri/3364c254d053cb4b36ad6aa236e936c9 to your computer and use it in GitHub Desktop.

Select an option

Save suemnjeri/3364c254d053cb4b36ad6aa236e936c9 to your computer and use it in GitHub Desktop.
!wget --no-check-certificate \
"https://github.com/laxmimerit/dog-cat-full-dataset/archive/refs/heads/master.zip" \
-O "/tmp/cats-and-dogs.zip"
zip_ref = zipfile.ZipFile('/tmp/cats-and-dogs.zip', 'r') #Opens the zip file in read mode
zip_ref.extractall('/tmp') #Extracts the files into the /tmp folder
zip_ref.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment