Xpro
Clown Prince
2
MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1
400 XP
You must upgrade your account or reply in the thread to view hidden text.
Colab notebook
Code:
destDriveLink = dest_text.value
sourceDriveLink = source_text.value
fromPage = int(from_page_text.value)
toPage = int(to_page_text.value)
downloader = DownloadFromDrive()
downloader._limit_size = float(max_download_size_text.value)
downloader.excluded_strings = [ext.strip() for ext in exclude_str_text.value.split(",") if ext.strip()]
downloader.copy_drive_to_drive(destDriveLink, sourceDriveLink, fromPage, toPage)