Updated to include additional backends

This commit is contained in:
Anon 2022-10-09 22:12:30 -07:00
parent 9ed2fb63f4
commit d2378a1e5b

View File

@ -90,11 +90,32 @@ banned_tags = (
settings_backend = {
"danbooru_backend": {
"module": "danbooru_backend",
"username": None,
"password": None,
"tmp_dir": settings_behavior["tmp_dir"],
"max_size": settings_behavior["max_size"]
}
"max_size": settings_behavior["max_size"],
"url": "https://danbooru.donmai.us"
},
# The below backends are still being tested
"konachan_backend": {
"module": "konachan_backend",
"username": None,
"password": None,
"tmp_dir": settings_behavior["tmp_dir"],
"max_size": settings_behavior["max_size"],
"max_depth": 91,
"url": "https://konachan.com"
},
"gelbooru_backend": {
"module": "gelbooru_backend",
"username": None,
"password": None,
"tmp_dir": settings_behavior["tmp_dir"],
"max_size": settings_behavior["max_size"],
"max_depth": 200,
"url": "https://gelbooru.com"
},
}