Should also support cached downloading for gdrive folders #263
rautnikhil
started this conversation in
Ideas / Feature requests
Replies: 2 comments
-
@rautnikhil Something like below? download_folder(
url,
...
md5={
"textfile.txt": "xxxxxxxxx",
"dir1/textfile2.txt": "yyyyyyyyyyyyyy",
}
) |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi @wkentaro , #code snippet for further reference def download_folder(
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to skip the already downloaded files from gdrive folder and cached_download is not available for download_folder() it always ends up downloading all the content of given folder. I want to make request that download_folder should support cached download.
I think this can be achieved by calling cached_download function instead of download function in download_folder function on request for non md5 based file verification.
Beta Was this translation helpful? Give feedback.
All reactions