-
Hi, Pretty sure I'm missing something obvious but since I'm new to both python and github I don't know where to look... I've got an archive file that saves picture IDs and skips redownloading them, but I just tested the same download command twice in a row and it just skipped over the 30 already downloaded and downloaded the previous 30 (on twitter, the most recent 30 files were skipped and the second 30 were downloaded). Is there a way to make it only check the most recent files and stop downloading once it hits something already in the archive, instead of skipping over the archive to download unlisted things? I'm not sure if this is done in the config file or if it's done as part of the download command. If the latter, the string I'm using atm is py -3 -m gallery_dl https://twitter.com/authorname/media --range 1-30 Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
This is controlled by the |
Beta Was this translation helpful? Give feedback.
-
I just looked into this again, and this shouldn't, and for me doesn't, happen.
As said in the other answer: Also, are you sure that gallery-dl is actually loading settings from your config file? There have been a couple of cases where people saved them as config.json.txt or gallery-dl.conf.json |
Beta Was this translation helpful? Give feedback.
I just looked into this again, and this shouldn't, and for me doesn't, happen.
--range 1-30
only processes the first 30 files, regardless of what happens to them (download, skip, simulate, etc).gallery-dl https://twitter.com/supernaturepics/media --range 1-30
always downloads the first 30 files and stops, or it skips those same files and stops if I run it a second time. The same happen…