mirror of
https://github.com/mikf/gallery-dl.git
synced 2025-01-31 11:41:35 +01:00
[hiperdex] update domain to 'hiperdex.com'
This commit is contained in:
parent
2cdb7e86ca
commit
83e50e43a8
@ -350,8 +350,8 @@ Consider all listed sites to potentially be NSFW.
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Hipertoon</td>
|
||||
<td>https://hipertoon.com/</td>
|
||||
<td>HiperDEX</td>
|
||||
<td>https://hiperdex.com/</td>
|
||||
<td>Artists, Chapters, Manga</td>
|
||||
<td></td>
|
||||
</tr>
|
||||
|
@ -6,7 +6,7 @@
|
||||
# it under the terms of the GNU General Public License version 2 as
|
||||
# published by the Free Software Foundation.
|
||||
|
||||
"""Extractors for https://hipertoon.com/"""
|
||||
"""Extractors for https://hiperdex.com/"""
|
||||
|
||||
from .common import ChapterExtractor, MangaExtractor
|
||||
from .. import text
|
||||
@ -20,7 +20,7 @@ BASE_PATTERN = (r"((?:https?://)?(?:www\.)?"
|
||||
class HiperdexBase():
|
||||
"""Base class for hiperdex extractors"""
|
||||
category = "hiperdex"
|
||||
root = "https://hipertoon.com"
|
||||
root = "https://hiperdex.com"
|
||||
|
||||
@memcache(keyarg=1)
|
||||
def manga_data(self, manga, page=None):
|
||||
@ -69,7 +69,7 @@ class HiperdexBase():
|
||||
class HiperdexChapterExtractor(HiperdexBase, ChapterExtractor):
|
||||
"""Extractor for hiperdex manga chapters"""
|
||||
pattern = BASE_PATTERN + r"(/mangas?/([^/?#]+)/([^/?#]+))"
|
||||
example = "https://hipertoon.com/manga/MANGA/CHAPTER/"
|
||||
example = "https://hiperdex.com/manga/MANGA/CHAPTER/"
|
||||
|
||||
def __init__(self, match):
|
||||
root, path, self.manga, self.chapter = match.groups()
|
||||
@ -91,7 +91,7 @@ class HiperdexMangaExtractor(HiperdexBase, MangaExtractor):
|
||||
"""Extractor for hiperdex manga"""
|
||||
chapterclass = HiperdexChapterExtractor
|
||||
pattern = BASE_PATTERN + r"(/mangas?/([^/?#]+))/?$"
|
||||
example = "https://hipertoon.com/manga/MANGA/"
|
||||
example = "https://hiperdex.com/manga/MANGA/"
|
||||
|
||||
def __init__(self, match):
|
||||
root, path, self.manga = match.groups()
|
||||
@ -127,7 +127,7 @@ class HiperdexArtistExtractor(HiperdexBase, MangaExtractor):
|
||||
chapterclass = HiperdexMangaExtractor
|
||||
reverse = False
|
||||
pattern = BASE_PATTERN + r"(/manga-a(?:rtist|uthor)/(?:[^/?#]+))"
|
||||
example = "https://hipertoon.com/manga-artist/NAME/"
|
||||
example = "https://hiperdex.com/manga-artist/NAME/"
|
||||
|
||||
def __init__(self, match):
|
||||
self.root = text.ensure_http_scheme(match.group(1))
|
||||
|
@ -66,7 +66,7 @@ CATEGORY_MAP = {
|
||||
"hentaihere" : "HentaiHere",
|
||||
"hentaiimg" : "Hentai Image",
|
||||
"hentainexus" : "HentaiNexus",
|
||||
"hiperdex" : "Hipertoon",
|
||||
"hiperdex" : "HiperDEX",
|
||||
"hitomi" : "Hitomi.la",
|
||||
"horne" : "horne",
|
||||
"idolcomplex" : "Idol Complex",
|
||||
|
Loading…
x
Reference in New Issue
Block a user