I have a folder on the google drive with just .jpg images and I want to download all of the images in the folder to my computer using the folder's shared link.
So far, the only thing that I have found that works is the code below but I can only get it to work for specific shared files and not an entire folder.
from google_drive_downloader import GoogleDriveDownloader as gdd
gdd.download_file_from_google_drive(file_id='1viW3guJTZuEFcx1-ivCL2aypDNLckEMh',
dest_path='./data/mnist.zip',
unzip=True)
Is there a way to modify this to work with google folders or is there another way to download google drive folders?