[hentaicosplays] update domains (#6578)

inherit from BaseExtractor to make differentiating between sites easier
This commit is contained in:
Mike Fährmann
2024-12-03 13:16:33 +01:00
parent d9bbe3b3b3
commit d96717e2e6
4 changed files with 80 additions and 55 deletions

View File

@@ -10,7 +10,7 @@ from gallery_dl.extractor import hentaicosplays
__tests__ = (
{
"#url" : "https://hentai-cosplay-xxx.com/image/---devilism--tide-kurihara-/",
"#category": ("", "hentaicosplays", "gallery"),
"#category": ("hentaicosplays", "hentaicosplay", "gallery"),
"#class" : hentaicosplays.HentaicosplaysGalleryExtractor,
"#pattern" : r"https://static\d?\.hentai-cosplay-xxx\.com/upload/\d+/\d+/\d+/\d+\.jpg$",
@@ -22,36 +22,48 @@ __tests__ = (
{
"#url" : "https://hentai-cosplays.com/image/---devilism--tide-kurihara-/",
"#category": ("", "hentaicosplays", "gallery"),
"#category": ("hentaicosplays", "hentaicosplay", "gallery"),
"#class" : hentaicosplays.HentaicosplaysGalleryExtractor,
"#pattern" : r"https://static\d?\.hentai-cosplay-xxx\.com/upload/\d+/\d+/\d+/\d+\.jpg$",
"count": 18,
"site" : "hentai-cosplays",
"site" : "hentai-cosplay-xxx",
"slug" : "---devilism--tide-kurihara-",
"title": "艦 こ れ-devilism の tide Kurihara 憂",
},
{
"#url" : "https://fr.porn-images-xxx.com/image/enako-enako-24/",
"#category": ("", "hentaicosplays", "gallery"),
"#url" : "https://fr.porn-image.com/image/enako-enako-24/",
"#category": ("hentaicosplays", "pornimage", "gallery"),
"#class" : hentaicosplays.HentaicosplaysGalleryExtractor,
"#pattern" : r"https://static\d?.porn-images-xxx.com/upload/\d+/\d+/\d+/\d+.jpg$",
"#pattern" : r"https://static\d?.porn-image.com/upload/\d+/\d+/\d+/\d+.jpg$",
"count": 11,
"site" : "porn-images-xxx",
"site" : "porn-image",
"title": str,
},
{
"#url" : "https://fr.porn-images-xxx.com/image/enako-enako-24/",
"#category": ("hentaicosplays", "pornimage", "gallery"),
"#class" : hentaicosplays.HentaicosplaysGalleryExtractor,
},
{
"#url" : "https://ja.hentai-img-xxx.com/image/hollow-cora-502/",
"#category": ("hentaicosplays", "hentaiimg", "gallery"),
"#class" : hentaicosplays.HentaicosplaysGalleryExtractor,
"#pattern" : r"https://static\d?.hentai-img-xxx.com/upload/\d+/\d+/\d+/\d+.jpg$",
"count": 2,
"site" : "hentai-img-xxx",
"title": str,
},
{
"#url" : "https://ja.hentai-img.com/image/hollow-cora-502/",
"#category": ("", "hentaicosplays", "gallery"),
"#category": ("hentaicosplays", "hentaiimg", "gallery"),
"#class" : hentaicosplays.HentaicosplaysGalleryExtractor,
"#pattern" : r"https://static\d?.hentai-img.com/upload/\d+/\d+/\d+/\d+.jpg$",
"count": 2,
"site" : "hentai-img",
"title": str,
},
)