mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-22 18:53:21 +01:00
[kireicake] add extractor
This commit is contained in:
parent
8d5f26d530
commit
616464f8f8
@ -37,6 +37,7 @@ modules = [
|
||||
"imgur",
|
||||
"jaiminisbox",
|
||||
"khinsider",
|
||||
"kireicake",
|
||||
"kisscomic",
|
||||
"kissmanga",
|
||||
"konachan",
|
||||
|
21
gallery_dl/extractor/kireicake.py
Normal file
21
gallery_dl/extractor/kireicake.py
Normal file
@ -0,0 +1,21 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright 2017 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 from https://reader.kireicake.com/"""
|
||||
|
||||
from . import foolslide
|
||||
|
||||
|
||||
class KireicakeChapterExtractor(foolslide.FoolslideChapterExtractor):
|
||||
"""Extractor for manga-chapters from reader.kireicake.com"""
|
||||
category = "kireicake"
|
||||
pattern = foolslide.chapter_pattern("reader\.kireicake\.com")
|
||||
test = [("https://reader.kireicake.com/read/wonderland/en/1/1/", {
|
||||
"url": "b2d36bc0bc67e4c461c3a4d6444a2fd339f5d07e",
|
||||
"keyword": "17d04e3bb24f6ad593463ecb7f90667f0df5326f",
|
||||
})]
|
@ -66,6 +66,7 @@ Supported Sites
|
||||
- raw.senmanga.com
|
||||
- readcomiconline.to
|
||||
- readcomics.tv
|
||||
- reader.kireicake.com
|
||||
- rule34.xxx
|
||||
- safebooru.org
|
||||
- seiga.nicovideo.jp
|
||||
|
Loading…
Reference in New Issue
Block a user