Add manganelo extractor (#1415)
This commit is contained in:
parent
fd858eed7b
commit
e3b9f88540
@ -403,6 +403,12 @@ Consider all sites to be NSFW unless otherwise known.
|
||||
<td>Chapters, Manga</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Manganelo</td>
|
||||
<td>https://manganelo.com/</td>
|
||||
<td>Chapters, Manga</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>MangaPark</td>
|
||||
<td>https://mangapark.net/</td>
|
||||
|
@ -69,6 +69,7 @@ modules = [
|
||||
"mangafox",
|
||||
"mangahere",
|
||||
"mangakakalot",
|
||||
"manganelo",
|
||||
"mangapark",
|
||||
"mangoxo",
|
||||
"myhentaigallery",
|
||||
|
119
gallery_dl/extractor/manganelo.py
Normal file
119
gallery_dl/extractor/manganelo.py
Normal file
@ -0,0 +1,119 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# 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 and entire manga from https://manganelo.com/"""
|
||||
|
||||
from .common import ChapterExtractor, MangaExtractor
|
||||
from .. import text
|
||||
import re
|
||||
|
||||
|
||||
class ManganeloBase():
|
||||
"""Base class for manganelo extractors"""
|
||||
category = "manganelo"
|
||||
root = "https://manganelo.com"
|
||||
|
||||
@staticmethod
|
||||
def parse_page(page, data):
|
||||
"""Parse metadata on 'page' and add it to 'data'"""
|
||||
text.extract_all(page, (
|
||||
("manga" , '<h1>', '</h1>'),
|
||||
('author' , '</i>Author(s) :</td>', '</tr>'),
|
||||
), values=data)
|
||||
data["author"] = text.remove_html(data["author"])
|
||||
return data
|
||||
|
||||
|
||||
class ManganeloChapterExtractor(ManganeloBase, ChapterExtractor):
|
||||
"""Extractor for manga-chapters from manganelo.com"""
|
||||
pattern = (r"(?:https?://)?(?:www\.)?manganelo\.com"
|
||||
r"(/chapter/\w+/chapter_[^/?#]+)")
|
||||
test = (
|
||||
("https://manganelo.com/chapter/gq921227/chapter_23", {
|
||||
"pattern": r"https://s\d+\.\w+\.com/mangakakalot/g\d+/gq921227/"
|
||||
r"vol3_chapter_23_24_yen/\d+\.jpg",
|
||||
"keyword": "3748087cf41abc97f991530e6fd53b291490d6d0",
|
||||
"count": 25,
|
||||
}),
|
||||
("https://manganelo.com/chapter/gamers/chapter_15", {
|
||||
"keyword": "8f59f88d516247011fe122e05746c27e203c8191",
|
||||
"content": "fbec629c71f66b246bfa0604204407c0d1c8ae38",
|
||||
"count": 39,
|
||||
}),
|
||||
)
|
||||
|
||||
def __init__(self, match):
|
||||
self.path = match.group(1)
|
||||
ChapterExtractor.__init__(self, match, self.root + self.path)
|
||||
self.session.headers['Referer'] = self.root
|
||||
|
||||
def metadata(self, page):
|
||||
_ , pos = text.extract(page, '<a class="a-h" ', '/a>')
|
||||
manga , pos = text.extract(page, '<a class="a-h" ', '/a>', pos)
|
||||
info , pos = text.extract(page, '<a class="a-h" ', '/a>', pos)
|
||||
author, pos = text.extract(page, '- Author(s) : ', '</p>', pos)
|
||||
|
||||
manga, _ = text.extract(manga, '">', '<')
|
||||
info , _ = text.extract(info , '">', '<')
|
||||
match = re.match(
|
||||
r"(?:[Vv]ol\. *(\d+) )?"
|
||||
r"[Cc]hapter *([^:]*)"
|
||||
r"(?:: *(.+))?", info)
|
||||
volume, chapter, title = match.groups() if match else ("", "", info)
|
||||
chapter, sep, minor = chapter.partition(".")
|
||||
|
||||
return {
|
||||
"manga" : text.unescape(manga),
|
||||
"title" : text.unescape(title) if title else "",
|
||||
"author" : text.unescape(author) if author else "",
|
||||
"volume" : text.parse_int(volume),
|
||||
"chapter" : text.parse_int(chapter),
|
||||
"chapter_minor": sep + minor,
|
||||
"lang" : "en",
|
||||
"language" : "English",
|
||||
}
|
||||
|
||||
def images(self, page):
|
||||
page = text.extract(
|
||||
page, 'class="container-chapter-reader', '\n<div')[0]
|
||||
return [
|
||||
(url, None)
|
||||
for url in text.extract_iter(page, '<img src="', '"')
|
||||
]
|
||||
|
||||
|
||||
class ManganeloMangaExtractor(ManganeloBase, MangaExtractor):
|
||||
"""Extractor for manga from manganelo.com"""
|
||||
chapterclass = ManganeloChapterExtractor
|
||||
pattern = (r"(?:https?://)?(?:www\.)?manganelo\.com"
|
||||
r"(/(?:manga/|read_)\w+)")
|
||||
test = (
|
||||
("https://manganelo.com/manga/ol921234", {
|
||||
"url": "8a1810edddbafcde993ecb3558a35c99d8d4f13e",
|
||||
}),
|
||||
("https://manganelo.com/manga/read_otome_no_teikoku", {
|
||||
"pattern": ManganeloChapterExtractor.pattern,
|
||||
"count": ">= 40"
|
||||
}),
|
||||
)
|
||||
|
||||
def chapters(self, page):
|
||||
results = []
|
||||
data = self.parse_page(page, {"lang": "en", "language": "English"})
|
||||
|
||||
needle = 'class="chapter-name text-nowrap" href="'
|
||||
pos = page.index('<ul class="row-content-chapter">')
|
||||
while True:
|
||||
url, pos = text.extract(page, needle, '"', pos)
|
||||
if not url:
|
||||
return results
|
||||
data["title"], pos = text.extract(page, '>', '</a>', pos)
|
||||
data["date"] , pos = text.extract(
|
||||
page, 'class="chapter-time text-nowrap" title="', '">', pos)
|
||||
chapter, sep, minor = url.rpartition("/chapter_")[2].partition(".")
|
||||
data["chapter"] = text.parse_int(chapter)
|
||||
data["chapter_minor"] = sep + minor
|
||||
results.append((url, data.copy()))
|
Loading…
x
Reference in New Issue
Block a user