Files
gallery-dl/test/results/rawkuma.py
2025-11-18 19:38:30 +01:00

65 lines
2.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 rawkuma
__tests__ = (
{
"#url" : "https://rawkuma.net/manga/saikyou-onmyouji-no-isekai-tenseiki-geboku-no-youkaidomo-ni-kurabete-monster-ga-yowaisugirundaga/chapter-3.28214/",
"#class" : rawkuma.RawkumaChapterExtractor,
"#pattern" : r"https://rcdn\.kyut\.dev/s/saikyou\-onmyouji\-no\-isekai\-tenseiki\-geboku\-no\-youkaidomo\-ni\-kurabete\-monster\-ga\-yowaisugirundaga/chapter\-3/\d+\.png",
"#count" : 28,
"chapter" : 3,
"chapter_id" : 28214,
"chapter_minor": "",
"count" : 28,
"page" : range(1, 28),
"date" : "dt:2025-09-14 15:57:26",
"extension" : "png",
"filename" : str,
"lang" : "ja",
"language" : "Japanese",
"manga" : "Saikyou Onmyouji no Isekai Tenseiki ~Geboku no Youkaidomo ni Kurabete Monster ga Yowaisugirundaga~",
"manga_id" : 784,
},
{
"#url" : "https://rawkuma.net/manga/makutsu-no-ou-yomei-ikkagetsu-no-doutei-mahou-shoujo-harem-o-kizuite-ou-e-kunrinsu/chapter-3.4.205398/",
"#class" : rawkuma.RawkumaChapterExtractor,
"#pattern" : r"https://rcdn\.kyut\.dev/m/makutsu\-no\-ou\-yomei\-ikkagetsu\-no\-doutei\-mahou\-shoujo\-harem\-o\-kizuite\-ou\-e\-kunrinsu/chapter\-3\-4/\d+\.jpg",
"#count" : 10,
"chapter" : 3,
"chapter_id" : 205398,
"chapter_minor": ".4",
"count" : 10,
"page" : range(1, 10),
"date" : "dt:2025-10-03 17:41:22",
"extension" : "jpg",
"filename" : str,
"lang" : "ja",
"language" : "Japanese",
"manga" : "Makutsu no Ou ~Yomei Ikkagetsu no Doutei, Mahou Shoujo Harem o Kizuite Ou e Kunrinsu~",
"manga_id" : 194526,
},
{
"#url" : "https://rawkuma.net/manga/makutsu-no-ou-yomei-ikkagetsu-no-doutei-mahou-shoujo-harem-o-kizuite-ou-e-kunrinsu",
"#class" : rawkuma.RawkumaMangaExtractor,
"#pattern" : rawkuma.RawkumaChapterExtractor.pattern,
"#count" : range(32, 50),
"chapter" : range(1, 20),
"chapter-minor": {"", ".1", ".2", ".3", ".4"},
"chapter_id" : int,
"manga" : "Makutsu no Ou ~Yomei Ikkagetsu no Doutei, Mahou Shoujo Harem o Kizuite Ou e Kunrinsu~",
"manga_id" : 194526,
},
)