PyDrive
PyDrive copied to clipboard
How to access sub directory
I can successfullay access root using
from pydrive.auth import GoogleAuth
from pydrive.drive import GoogleDrive
gauth = GoogleAuth()
gauth.LocalWebserverAuth()
drive = GoogleDrive(gauth)
but my doubt is 'How can I access the subdirectory and download/access a file inside it' ?