mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 18:53:21 +01:00
46 lines
1.4 KiB
Python
46 lines
1.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License version 2 as
|
|
# published by the Free Software Foundation.
|
|
|
|
from gallery_dl.extractor import hentaicosplays
|
|
|
|
|
|
__tests__ = (
|
|
{
|
|
"#url" : "https://hentai-cosplays.com/image/---devilism--tide-kurihara-/",
|
|
"#category": ("", "hentaicosplays", "gallery"),
|
|
"#class" : hentaicosplays.HentaicosplaysGalleryExtractor,
|
|
"#pattern" : r"https://static\d?.hentai-cosplays.com/upload/\d+/\d+/\d+/\d+.jpg$",
|
|
|
|
"count": 18,
|
|
"site" : "hentai-cosplays",
|
|
"slug" : "---devilism--tide-kurihara-",
|
|
"title": "艦 こ れ-devilism の tide Kurihara 憂",
|
|
},
|
|
|
|
{
|
|
"#url" : "https://fr.porn-images-xxx.com/image/enako-enako-24/",
|
|
"#category": ("", "hentaicosplays", "gallery"),
|
|
"#class" : hentaicosplays.HentaicosplaysGalleryExtractor,
|
|
"#pattern" : r"https://static\d?.porn-images-xxx.com/upload/\d+/\d+/\d+/\d+.jpg$",
|
|
|
|
"count": 11,
|
|
"site" : "porn-images-xxx",
|
|
"title": str,
|
|
},
|
|
|
|
{
|
|
"#url" : "https://ja.hentai-img.com/image/hollow-cora-502/",
|
|
"#category": ("", "hentaicosplays", "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,
|
|
},
|
|
|
|
)
|