mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 10:42:34 +01:00
[subapics] add chapter- and manga-extractor (#70)
This commit is contained in:
parent
2dd3aeeeae
commit
54c36a8a34
@ -71,6 +71,7 @@ Sen Manga http://raw.senmanga.com/ Chapters
|
||||
Sense-Scans http://sensescans.com/ Chapters, Manga
|
||||
SlideShare https://www.slideshare.net/ Presentations
|
||||
Spectrum Nexus |http://www.thes-0| Chapters, Manga
|
||||
Subapics https://subapics.com/ Chapters, Manga
|
||||
The /b/ Archive https://thebarchive.com/ Threads
|
||||
Tumblr https://www.tumblr.com/ Images from Users, Likes, Posts, Tag-Searches Optional (OAuth)
|
||||
Twitter https://twitter.com/ Tweets
|
||||
|
@ -78,6 +78,7 @@ modules = [
|
||||
"sensescans",
|
||||
"slideshare",
|
||||
"spectrumnexus",
|
||||
"subapics",
|
||||
"thebarchive",
|
||||
"tumblr",
|
||||
"twitter",
|
||||
|
63
gallery_dl/extractor/subapics.py
Normal file
63
gallery_dl/extractor/subapics.py
Normal file
@ -0,0 +1,63 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright 2018 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 and entire manga from https://subapics.com/"""
|
||||
|
||||
from . import komikcast
|
||||
from .. import text
|
||||
|
||||
|
||||
class SubapicsBase(komikcast.KomikcastBase):
|
||||
"""Base class for subapics extractors"""
|
||||
category = "subapics"
|
||||
root = "https://subapics.com"
|
||||
|
||||
|
||||
class SubapicsChapterExtractor(SubapicsBase,
|
||||
komikcast.KomikcastChapterExtractor):
|
||||
"""Extractor for manga-chapters from subapics.com"""
|
||||
pattern = [r"(?:https?://)?(?:www\.)?subapics\.com"
|
||||
r"(/[^/?&#]+-chapter-[^/?&#]+/?)$"]
|
||||
test = [("http://subapics.com/apotheosis-chapter-02-2/", {
|
||||
"url": "978d3c053d34a77f6ea6e60cbba3deda1e369be8",
|
||||
"keyword": "ed64479aef5a68aafa39334515f34a4595858c3c",
|
||||
})]
|
||||
|
||||
@staticmethod
|
||||
def get_images(page):
|
||||
readerarea = text.extract(
|
||||
page, '<div id="readerarea">', '<meta/>')[0]
|
||||
return [
|
||||
(url, None)
|
||||
for url in text.extract_iter(
|
||||
readerarea, ' src="', '"'
|
||||
)
|
||||
]
|
||||
|
||||
|
||||
class SubapicsMangaExtractor(SubapicsBase,
|
||||
komikcast.KomikcastMangaExtractor):
|
||||
"""Extractor for manga from subapics.com"""
|
||||
pattern = [r"(?:https?://)?(?:www\.)?(subapics\.com/manga/[^/?&#]+/?)$"]
|
||||
test = [(("https://subapics.com/manga/"
|
||||
"rune-factory-4-koushiki-comic-visual-book/"), {
|
||||
"url": "6b18ba9513a6c92a23df1b78b11a1ad0013c6e5e",
|
||||
"keyword": "2fffe06b93b7ac8c4bb61f44398326deaf59fcf9",
|
||||
})]
|
||||
|
||||
@staticmethod
|
||||
def get_metadata(page):
|
||||
manga , pos = text.extract(page, "<title>", "</title>")
|
||||
author, pos = text.extract(page, "<b>Author</b>: ", "</li>", pos)
|
||||
genres, pos = text.extract(page, "<b>Genres</b>: ", "</li>", pos)
|
||||
|
||||
return {
|
||||
"manga": text.unescape(manga.rpartition(" – ")[0]),
|
||||
"author": text.unescape(author),
|
||||
"genres": text.remove_html(genres).replace(" , ", ", "),
|
||||
}
|
Loading…
Reference in New Issue
Block a user