1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-22 18:53:21 +01:00
gallery-dl/docs/gallery-dl.conf
Mike Fährmann d3b04076f7
add .netrc support (#22)
Use the '--netrc' cmdline option or set the 'netrc' config option
to 'true' to enable the use of .netrc authentication data.

The 'machine' names for the .netrc info are the lowercase extractor
names (or categories): batoto, exhentai, nijie, pixiv, seiga.
2017-06-24 12:17:26 +02:00

79 lines
1.6 KiB
Plaintext

{
"base-directory": "/tmp/",
"netrc": false,
"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,
"morecomments": false,
"date-min": 0,
"date-max": 253402210800,
"recursion": 0
},
"flickr":
{
"access-token": null,
"access-token-secret": null,
"metadata": false,
"size-max": null
}
},
"output":
{
"mode": "auto",
"shorten": true,
"progress": true
}
}