calvinhobbes23 / Skillshare-DL

146 stars 163 forks source link

Is there a way to directly save the courses to the pc or another cloud platform #4

Open RehanPlayz opened 3 years ago

RehanPlayz commented 3 years ago

the title says it all

calvinhobbes23 commented 3 years ago

Sorry I have no time for this. If someone else is interested, please welcome to work on it. Else I will close this issue in a couple of weeks.

Flaavf8 commented 2 years ago

https://stackoverflow.com/questions/50453428/how-do-i-download-multiple-files-or-an-entire-folder-from-google-colab

You can just create a new cell with this code, to make a zip file out of the "Skillshare" folder: !zip -r /content/file.zip /content/Skillshare

Then you could either download it manually (just right click "file.zip" and press "Download") or you can add the following code, as mentioned in the SO-post:

from google.colab import files
files.download("/content/file.zip")

I tried it and it zipped the folder, however the automatic download didn't work, but thats not a problem.