How can I skip already checked links? #4081
Replies: 2 comments 3 replies
-
my issue with my implementation is that i cant get it to format the files the way i want them to. even with this config file
sometimes i get the desired output but other times i get |
Beta Was this translation helpful? Give feedback.
-
So I think something isn't working quite right in the archive function, or I am misunderstanding how it works. I wrote my own implementation and the TL;DR: is that it takes half the storage space of the archive file, and runs ~25x faster My use case was for reddit accounts. my config looks like this
and the code looks something like this
basically i go through a list of users, get their links. I check if i have already searched their links and if not, download them. |
Beta Was this translation helpful? Give feedback.
-
When I run
"gallery-dl -i saved_users.txt --download-archive archive-DA.sqlite3"
Where saved_users.txt is a list of reddit usernames, I want it to skip previously checked links.
The following is an implementation I wrote to download link by link, but I figure there is a way i should be able to handle this in the command line.
The idea behind the above is just to skip any previously checked urls. This runs way faster, and I dont mind saving a urls file. Is there anyway I can do this automatically? Thank you!
Beta Was this translation helpful? Give feedback.
All reactions