I am trying to download files from google drive and all I have is the drive\'s URL.
I have read about google API that talks about some drive_service
and
This has also been described above,
from pydrive.auth import GoogleAuth
gauth = GoogleAuth()
gauth.LocalWebserverAuth()
drive = GoogleDrive(gauth)
This creates its own server too do the dirty work of authenticating
file_obj = drive.CreateFile({'id': ''})
file_obj.GetContentFile('Demo.txt')
This downloads the file