Files
gallery-dl/docs/gallery-dl.conf
Mike Fährmann d5a70f2580 add simple progress indicator for multiple URLs (#19)
The output can be configured via the 'output.progress'
config value.

Possible values:
    - true:     Show the default progress indicator
                "[{current}/{total}] {url}" (default)
    - false:    Never show the progress indicator
    - <string>: Show the progress indicator using this
                as a custom format string(1).
                Possible replacement keys are:
                - current: current URL index
                - total  : total number of URLs
                - url    : current URL

(1) https://docs.python.org/3/library/string.html#formatstrings
2017-06-09 20:12:15 +02:00

70 lines
1.4 KiB
Plaintext

{
"base-directory": "/tmp/",
"downloader":
{
"http":
{
"retries": 5,
"timeout": null
}
},
"extractor":
{
"pixiv":
{
"user":
{
"directory": ["{category}", "{artist-id}"]
},
"bookmark":
{
"directory": ["{category}", "my bookmarks"]
},
"ugoira": true,
"username": null,
"password": null
},
"batoto":
{
"username": null,
"password": null
},
"exhentai":
{
"wait-min": 3,
"wait-max": 6,
"original": true,
"username": null,
"password": null
},
"nijie":
{
"username": null,
"password": null
},
"seiga":
{
"username": null,
"password": null
},
"gelbooru":
{
"filename": "{category}_{id:>07}_{md5}.{extension}"
},
"reddit":
{
"refresh-token": null,
"comments": 500,
"date-min": 0,
"date-max": 253402210800,
"recursion": 0
}
},
"output":
{
"mode": "auto",
"shorten": true,
"progress": true
}
}