fix stupidity
This commit is contained in:
4
gallery-dl/.gitignore
vendored
4
gallery-dl/.gitignore
vendored
@ -1,2 +1,4 @@
|
|||||||
gallery-dl
|
downloaded*.txt
|
||||||
|
gallery-dl/*.sqlite3
|
||||||
|
gallery-dl/log.txt
|
||||||
Artists
|
Artists
|
||||||
|
51
gallery-dl/gallery-dl/config.json
Normal file
51
gallery-dl/gallery-dl/config.json
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
{
|
||||||
|
"extractor":
|
||||||
|
{
|
||||||
|
"base-directory": "./Artists",
|
||||||
|
"archive": "./gallery-dl/archive.sqlite3",
|
||||||
|
|
||||||
|
"rule34":
|
||||||
|
{
|
||||||
|
"archive": "./gallery-dl/archive-rule34.sqlite3",
|
||||||
|
|
||||||
|
"filename": "{md5}.{extension}",
|
||||||
|
"directory": ["{search_tags}", "Rule34"]
|
||||||
|
},
|
||||||
|
"kemonoparty":
|
||||||
|
{
|
||||||
|
"archive": "./gallery-dl/archive-kemono.sqlite3",
|
||||||
|
|
||||||
|
"filename": "{id}_{num:>03}.{extension}",
|
||||||
|
"directory": ["{user}", "Kemono"]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
"downloader":
|
||||||
|
{
|
||||||
|
"part-directory": "/tmp",
|
||||||
|
"rate": "30M",
|
||||||
|
"retries": 3,
|
||||||
|
"timeout": 10
|
||||||
|
},
|
||||||
|
|
||||||
|
"output":
|
||||||
|
{
|
||||||
|
"ansi": true,
|
||||||
|
"log": {
|
||||||
|
"level": "info",
|
||||||
|
"format": {
|
||||||
|
"debug" : "\u001b[0;37m{name}: {message}\u001b[0m",
|
||||||
|
"info" : "\u001b[1;37m{name}: {message}\u001b[0m",
|
||||||
|
"warning": "\u001b[1;33m{name}: {message}\u001b[0m",
|
||||||
|
"error" : "\u001b[1;31m{name}: {message}\u001b[0m"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"logfile": {
|
||||||
|
"path": "./gallery-dl/log.txt",
|
||||||
|
"mode": "w",
|
||||||
|
"format-date": "%Y-%m-%dT%H:%M:%S",
|
||||||
|
"level": "debug"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Reference in New Issue
Block a user