Advertisement
borhannezami

03_Cloud_Download

Nov 7th, 2023 (edited)
603
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.40 KB | None | 0 0
  1. import os
  2.  
  3. # Create target Directory if it doesn't exist
  4. if not os.path.exists('/content/drive/MyDrive/Cloud-Downloads'):
  5.     os.mkdir('/content/drive/MyDrive/Cloud-Downloads')
  6.  
  7. os.chdir('/content/drive/MyDrive/Cloud-Downloads')
  8.  
  9. # Get input links from the user
  10. links = input("Enter the links (separated by spaces): ").split()
  11.  
  12. for link in links:
  13.     !wget -c {link} --no-check-certificate
  14.  
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement