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
In order to facilitate the generation of download lists, add a function to the store along those lines: repeated calls to get_download_urls() until there are no more URLs to download.
while True:
bufferlist = self.get_download_urls()
if bufferlist or self.done:
break
sleep(sleep_time)
return bufferlist
The text was updated successfully, but these errors were encountered:
In order to facilitate the generation of download lists, add a function to the store along those lines: repeated calls to
get_download_urls()
until there are no more URLs to download.The text was updated successfully, but these errors were encountered: