1
0
mirror of https://github.com/mikf/gallery-dl.git synced 2024-11-23 19:22:32 +01:00
gallery-dl/gallery_dl/extractor/mangapanda.py

40 lines
1.4 KiB
Python
Raw Normal View History

2015-11-08 00:02:37 +01:00
# -*- coding: utf-8 -*-
# Copyright 2015-2017 Mike Fährmann
2015-11-08 00:02:37 +01: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.
2015-11-28 22:21:35 +01:00
"""Extract manga-chapters and entire manga from http://www.mangapanda.com/"""
2015-11-08 00:02:37 +01:00
from .mangareader import MangareaderMangaExtractor, MangareaderChapterExtractor
2015-11-08 00:02:37 +01:00
2017-02-01 00:53:19 +01:00
class MangapandaBase():
2015-11-28 22:21:35 +01:00
"""Base class for mangapanda extractors"""
2015-11-21 04:26:30 +01:00
category = "mangapanda"
root = "http://www.mangapanda.com"
2015-11-27 00:14:09 +01:00
class MangapandaMangaExtractor(MangapandaBase, MangareaderMangaExtractor):
"""Extractor for manga from mangapanda.com"""
2017-10-09 22:37:50 +02:00
pattern = [r"(?:https?://)?((?:www\.)?mangapanda\.com/[^/?&#]+)/?$"]
2015-12-14 03:00:58 +01:00
test = [("http://www.mangapanda.com/mushishi", {
"url": "50a1ba730b85426b904da256c80f68ba6a8a2566",
2017-09-23 15:42:50 +02:00
"keyword": "031b3ea085921c552de017ecbb9b906e462229c9",
2015-12-14 03:00:58 +01:00
})]
2015-11-27 00:14:09 +01:00
2017-02-01 00:53:19 +01:00
class MangapandaChapterExtractor(MangapandaBase, MangareaderChapterExtractor):
"""Extractor for manga-chapters from mangapanda.com"""
2015-11-21 04:26:30 +01:00
pattern = [
2017-10-09 22:37:50 +02:00
(r"(?:https?://)?(?:www\.)?mangapanda\.com((/[^/?&#]+)/(\d+))"),
2017-02-01 00:53:19 +01:00
(r"(?:https?://)?(?:www\.)?mangapanda\.com"
2017-10-09 22:37:50 +02:00
r"(/\d+-\d+-\d+(/[^/]+)/chapter-(\d+)\.html)"),
2015-11-21 04:26:30 +01:00
]
2015-12-14 03:00:58 +01:00
test = [("http://www.mangapanda.com/red-storm/2", {
"url": "4bf4ddf6c50105ec8a37675495ab80c46608275d",
2017-09-23 15:42:50 +02:00
"keyword": "367d2694b49cc7cac82d68530d7d467a62453502",
2015-12-14 03:00:58 +01:00
})]