mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-24 03:32:33 +01:00
9a08f8a097
- this includes dokireader, fallenangels, jaiminisbox, powermanga, sensescans, worldthree, yonkouprod, gomanga, yomanga - added 'chapter_string', 'chapter_id', 'chapter_minor' and 'count' keywords - changed the 'chapter' keyword to always be just a number - changed the default directory format
22 lines
774 B
Python
22 lines
774 B
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.
|
|
|
|
"""Extract manga-chapters from 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/", {
|
|
"url": "f021de7f31ee3a3f688fdf3e8183aef4226c2b50",
|
|
"keyword": "d187df3e3b6dbe09ec163626f6fd7c57133ab163",
|
|
})]
|