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
771 B
Python
22 lines
771 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2015-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 http://powermanga.org/"""
|
|
|
|
from . import foolslide
|
|
|
|
|
|
class PowermangaChapterExtractor(foolslide.FoolslideChapterExtractor):
|
|
"""Extractor for manga-chapters from powermanga.org"""
|
|
category = "powermanga"
|
|
pattern = foolslide.chapter_pattern(r"read(?:er)?\.powermanga\.org")
|
|
test = [("https://read.powermanga.org/read/one_piece/en/0/803/page/1", {
|
|
"url": "e6179c1565068f99180620281f86bdd25be166b4",
|
|
"keyword": "203ea5d0ef7759f4517316f0678f3592fc27cdbe",
|
|
})]
|