-
I want to download the 10 latest deviations from all the users I watch, but I'd like gallery-dl to stop trying to download deviations that I already have downloaded. I've set up the archive and cache. For example, here is my main extractor config:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can set "skip" to "abort" Something to note about DeviantArt specifically is if a stash item is already downloaded and they link it in a new deviation too, it will abort on that and might not get all 10 images. I put a "stash" section in my config with So you can edit it like this: {
"extractor": {
"deviantart": {
"base-directory": "./",
"postprocessors": null,
"cookies": null,
"cookies-update": false,
"proxy": null,
"skip": "abort",
"image-range": ":10",
"sleep": 0,
"path-restrict": "auto",
"path-remove": "\\u0000-\\u001f\\u007f",
"user-agent": "Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0",
"archive": "./archive.sqlite3",
"stash": {
"skip": true
}
}
}
} |
Beta Was this translation helpful? Give feedback.
You can set "skip" to "abort"
For only downloading up to 10 images you can use "image-range": ":10"
Something to note about DeviantArt specifically is if a stash item is already downloaded and they link it in a new deviation too, it will abort on that and might not get all 10 images. I put a "stash" section in my config with
"skip": true
because of that.So you can edit it like this: