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
696 B
Python
22 lines
696 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 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://yomanga.co/"""
|
|
|
|
from . import foolslide
|
|
|
|
|
|
class YomangaChapterExtractor(foolslide.FoolslideChapterExtractor):
|
|
"""Extractor for manga-chapters from yomanga.co"""
|
|
category = "yomanga"
|
|
pattern = foolslide.chapter_pattern(r"(?:www\.)?yomanga\.co/reader")
|
|
test = [("https://yomanga.co/reader/read/uwakoi/en/0/2/", {
|
|
"url": "4b5d8fc5902f03647cc876cf6643849e5bc05455",
|
|
})]
|
|
single = False
|