mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 02:32:33 +01:00
add 'coomer.party' to supported sites (closes #2462)
This commit is contained in:
parent
0b33435da5
commit
ffa1dd1d91
@ -109,6 +109,12 @@ Consider all sites to be NSFW unless otherwise known.
|
||||
<td>Tag Searches</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Coomer</td>
|
||||
<td>https://coomer.party/</td>
|
||||
<td>Favorites, Posts, User Profiles</td>
|
||||
<td>Supported</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Cyberdrop</td>
|
||||
<td>https://cyberdrop.me/</td>
|
||||
@ -380,7 +386,7 @@ Consider all sites to be NSFW unless otherwise known.
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Kemonoparty</td>
|
||||
<td>Kemono</td>
|
||||
<td>https://kemono.party/</td>
|
||||
<td>Discord Servers, Favorites, Posts, User Profiles</td>
|
||||
<td>Supported</td>
|
||||
|
@ -26,6 +26,7 @@ CATEGORY_MAP = {
|
||||
"bbc" : "BBC",
|
||||
"bcy" : "半次元",
|
||||
"comicvine" : "Comic Vine",
|
||||
"coomerparty" : "Coomer",
|
||||
"deviantart" : "DeviantArt",
|
||||
"drawfriends" : "Draw Friends",
|
||||
"dynastyscans" : "Dynasty Reader",
|
||||
@ -57,6 +58,7 @@ CATEGORY_MAP = {
|
||||
"imgur" : "imgur",
|
||||
"joyreactor" : "JoyReactor",
|
||||
"kabeuchi" : "かべうち",
|
||||
"kemonoparty" : "Kemono",
|
||||
"kireicake" : "Kirei Cake",
|
||||
"kissgoddess" : "Kiss Goddess",
|
||||
"lineblog" : "LINE BLOG",
|
||||
@ -149,6 +151,10 @@ SUBCATEGORY_MAP = {
|
||||
"atfbooru": {
|
||||
"favorite": "",
|
||||
},
|
||||
"coomerparty": {
|
||||
"discord" : "",
|
||||
"discord-server": "",
|
||||
},
|
||||
"danbooru": {
|
||||
"favorite": "",
|
||||
},
|
||||
@ -239,6 +245,7 @@ AUTH_MAP = {
|
||||
"aryion" : "Supported",
|
||||
"atfbooru" : "Supported",
|
||||
"baraag" : _OAUTH,
|
||||
"coomerparty" : "Supported",
|
||||
"danbooru" : "Supported",
|
||||
"derpibooru" : _APIKEY_DB,
|
||||
"deviantart" : _OAUTH,
|
||||
@ -381,6 +388,10 @@ def build_extractor_list():
|
||||
default["e-hentai"] = default["exhentai"]
|
||||
domains["e-hentai"] = domains["exhentai"].replace("x", "-")
|
||||
|
||||
# add coomer.party
|
||||
default["coomerparty"] = default["kemonoparty"]
|
||||
domains["coomerparty"] = domains["kemonoparty"].replace("kemono", "coomer")
|
||||
|
||||
# add hentai-cosplays sister sites (hentai-img, porn-images-xxx)
|
||||
default["hentaiimg"] = default["hentaicosplays"]
|
||||
domains["hentaiimg"] = "https://hentai-img.com/"
|
||||
|
Loading…
Reference in New Issue
Block a user