22 lines
754 B
Python
Raw Normal View History

2016-09-26 21:58:18 +02:00
# -*- coding: utf-8 -*-
# Copyright 2016-2017 Mike Fährmann
2016-09-26 21:58:18 +02:00
#
# 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://kobato.hologfx.com/"""
from . import foolslide
2016-09-26 21:58:18 +02:00
2017-02-01 00:53:19 +01:00
class DokireaderChapterExtractor(foolslide.FoolslideChapterExtractor):
2016-09-26 21:58:18 +02:00
"""Extractor for manga-chapters from kobato.hologfx.com"""
category = "dokireader"
pattern = foolslide.chapter_pattern("kobato\.hologfx\.com/reader")
2017-02-01 00:53:19 +01:00
test = [(("https://kobato.hologfx.com/reader/read/"
"hitoribocchi_no_oo_seikatsu/en/3/34"), {
"keyword": "f28811c01b64031671108a4a3d6eea1040816b82",
2016-09-26 21:58:18 +02:00
})]