You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Download files from URLs, including Google Drive shared URL.
3063
+
3064
+
Args:
3065
+
urls (list): The list of urls to download. Google Drive URL is also supported.
3066
+
out_dir (str, optional): The output directory. Defaults to None.
3067
+
filenames (list, optional): Output filename. Default is basename of URL.
3068
+
quiet (bool, optional): Suppress terminal output. Default is False.
3069
+
proxy (str, optional): Proxy. Defaults to None.
3070
+
speed (float, optional): Download byte size per second (e.g., 256KB/s = 256 * 1024). Defaults to None.
3071
+
use_cookies (bool, optional): Flag to use cookies. Defaults to True.
3072
+
verify (bool | str, optional): Either a bool, in which case it controls whether the server's TLS certificate is verified, or a string, in which case it must be a path to a CA bundle to use. Default is True.. Defaults to True.
3073
+
id (str, optional): Google Drive's file ID. Defaults to None.
3074
+
fuzzy (bool, optional): Fuzzy extraction of Google Drive's file Id. Defaults to False.
3075
+
resume (bool, optional): Resume the download from existing tmp file if possible. Defaults to False.
3076
+
unzip (bool, optional): Unzip the file. Defaults to True.
3077
+
overwrite (bool, optional): Overwrite the file if it already exists. Defaults to False.
3078
+
subfolder (bool, optional): Create a subfolder with the same name as the file. Defaults to False.
3079
+
multi_part (bool, optional): If the file is a multi-part file. Defaults to False.
0 commit comments