Advertisement
borhannezami

01_Cloud_Download

Nov 7th, 2023 (edited)
703
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.32 KB | None | 0 0
  1. import os
  2. # Create target Directory if don't exist
  3. if not os.path.exists('/content/drive/MyDrive/Cloud-Downloads'):
  4.     os.mkdir('/content/drive/MyDrive/Cloud-Downloads')
  5.    
  6. os.chdir('/content/drive/MyDrive/Cloud-Downloads')
  7.  
  8. links = ["Link1", "Link2"]
  9.  
  10. for link in links:
  11.   !wget -c {link} --no-check-certificate
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement