2015-11-08 00:02:37 +01:00
|
|
|
# -*- 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://www.mangapanda.com/"""
|
|
|
|
|
2015-11-26 23:07:12 +01:00
|
|
|
from .mangareader import MangaReaderChapterExtractor
|
2015-11-08 00:02:37 +01:00
|
|
|
|
2015-11-26 23:07:12 +01:00
|
|
|
class MangaPandaExtractor(MangaReaderChapterExtractor):
|
2015-11-08 00:02:37 +01:00
|
|
|
|
2015-11-21 04:26:30 +01:00
|
|
|
category = "mangapanda"
|
|
|
|
directory_fmt = ["{category}", "{manga}", "c{chapter:>03} - {title}"]
|
|
|
|
filename_fmt = "{manga}_c{chapter:>03}_{page:>03}.{extension}"
|
|
|
|
pattern = [
|
|
|
|
r"(?:https?://)?(?:www\.)?mangapanda\.com((/[^/]+)/(\d+))",
|
|
|
|
r"(?:https?://)?(?:www\.)?mangapanda\.com(/\d+-\d+-\d+(/[^/]+)/chapter-(\d+).html)",
|
|
|
|
]
|
2015-11-08 00:02:37 +01:00
|
|
|
url_base = "http://www.mangapanda.com"
|