Skip to content

Instantly share code, notes, and snippets.

@jayzhan211
Last active June 20, 2018 12:56
Show Gist options
  • Save jayzhan211/c043c8a37c46b16ce8b00b1be1d88f1e to your computer and use it in GitHub Desktop.
Save jayzhan211/c043c8a37c46b16ce8b00b1be1d88f1e to your computer and use it in GitHub Desktop.
Upload folder in Jupyter
  • upload ZIP first
  • new python file
import zipfile as zf
files = zf.ZipFile("ZippedFolder.zip", 'r')
->change the zip name
files.extractall('directory to extract')
-> add new folder and '[foldername]'
files.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment