mikf / gallery-dl

Command-line program to download image galleries and collections from several image hosting sites
GNU General Public License v2.0
10.84k stars 889 forks source link

Is there an option to remember downloads from Kemonoparty? #1914

Closed a84r7a3rga76fg closed 2 years ago

a84r7a3rga76fg commented 2 years ago

Below is my current configuration. Is there an option to always remember downloads with a specific extractor? I always move the downloaded files from the download directory.

        "kemonoparty": 
        {
            "base-directory": "C:/gallery-DL/Kemono",
            "directory": [
            "{user[:100]}",
            "{id} {title[:30]}"
            ],
            "filename": "{id}.{filename[:90]}.{extension}",
            "skip": "true",
            "cookies": {
            }
        }
kattjevfel commented 2 years ago

Sounds like you want to use the archive function

a84r7a3rga76fg commented 2 years ago

How do I use that? The config page doesn't say much about it.

My current configuration. My command execution is "gallery-dl --download-archive URL".

        "kemonoparty": 
        {
            "base-directory": "G:/Gallery-DL/Kemono",
            "archive": "C:/Users/Administrator/gallery-dl/archive.sqlite3",
            "directory": [
            "kemono.party {user[:100]}",
            "{id} {title[:30]}"
            ],
            "filename": "{id}.{filename[:90]}.{extension}",
            "skip": "true",
            "cookies": {
                }
        }
Hrxn commented 2 years ago

You don't need the --download-archive option when running gallery-dl if you already have set a archive file in your config file, like you already have

a84r7a3rga76fg commented 2 years ago

Oh, I see, that solved it. I'll close this.