I have installed ZDrive through pip install and imported
from zdrive import Downloader
The credentials.json is placed in the script directory. Google API is enabled.
This is my function:
def downloadFolderGDrive(folder_id, output_directory):
d = Downloader()
d.downloadFolder(folder_id, destinationFolder=output_directory)
return
After initial authentification flow completion, the script runs fine with no errors, but... nothing is downloaded.
I tested to add a folder that does not exist to the output folder variable > it is created, but still nothing has been downloaded.
I have installed ZDrive through pip install and imported
from zdrive import DownloaderThe credentials.json is placed in the script directory. Google API is enabled.
This is my function:
After initial authentification flow completion, the script runs fine with no errors, but... nothing is downloaded.
I tested to add a folder that does not exist to the output folder variable > it is created, but still nothing has been downloaded.