Minimal class to download shared files from Google Drive.
Installing is as simple as
pip install googledrivedownloader
You will need to obtain the sharable link from Google Drive:
from google_drive_downloader import GoogleDriveDownloader as gdd
gdd.download_file_from_google_drive(file_id='1iytA1n2z4go3uVCwE__vIKouTKyIDjEq',
dest_path='./data/mnist.zip',
unzip=True)
This will download a mnist.zip
file into a data
folder and unzip it.
- Set
showsize=True
to see the download progress - Set
overwrite=True
you really want to overwrite an already existent file.