You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gallery-dl/gallery_dl/extractor/powermanga.py

31 lines
1.0 KiB

# -*- coding: utf-8 -*-
# Copyright 2015 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 pages from http://powermanga.org/"""
from .redhawkscans import RedHawkScansExtractor
info = {
"category": "powermanga",
"extractor": "PowerMangaExtractor",
"directory": ["{category}", "{manga}", "c{chapter:>03}{chapter-minor} - {title}"],
"filename": "{manga}_c{chapter:>03}{chapter-minor}_{page:>03}.{extension}",
"pattern": [
(r"(?:https?://)?read(?:er)?\.powermanga\.org/read/"
r"(.+/([a-z]{2})/\d+/\d+)(?:/page)?"),
],
}
class PowerMangaExtractor(RedHawkScansExtractor):
def __init__(self, match):
RedHawkScansExtractor.__init__(self, match)
extra = "er" if "://reader" in match.string else ""
self.category = info["category"]
self.url_base = "https://read" + extra + ".powermanga.org/read/"