mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-24 03:32:33 +01:00
cfa479fab5
- ask user to report unexpected errors, which usually indicate
extractor failure
- handle OSErrors separately (permissions, disk full, etc)
- revert 30eef52
35 lines
1.2 KiB
Python
35 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2016-2017 Mike Fährmann
|
|
#
|
|
# 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.
|
|
|
|
"""Extractors for https://jaiminisbox.com/"""
|
|
|
|
from . import foolslide
|
|
|
|
|
|
class JaiminisboxChapterExtractor(foolslide.FoolslideChapterExtractor):
|
|
"""Extractor for manga-chapters from jaiminisbox.com"""
|
|
category = "jaiminisbox"
|
|
pattern = foolslide.chapter_pattern(r"(?:www\.)?jaiminisbox\.com/reader")
|
|
test = [
|
|
("https://jaiminisbox.com/reader/read/uratarou/en/0/1/", {
|
|
"keyword": "d187df3e3b6dbe09ec163626f6fd7c57133ab163",
|
|
}),
|
|
("https://jaiminisbox.com/reader/read/dr-stone/en/0/16/", {
|
|
"keyword": "6b6896d98a2eb8f38e9b7f5242a547b826da2599",
|
|
}),
|
|
]
|
|
|
|
|
|
class JaiminisboxMangaExtractor(foolslide.FoolslideMangaExtractor):
|
|
"""Extractor for manga from jaiminisbox.com"""
|
|
category = "jaiminisbox"
|
|
pattern = foolslide.manga_pattern(r"(?:www\.)?jaiminisbox\.com/reader")
|
|
test = [("https://jaiminisbox.com/reader/series/sora_no_kian/", {
|
|
"url": "66612be177dc3b3fa1d1f537ef02f4f701b163ea",
|
|
})]
|