mirror of
https://github.com/mikf/gallery-dl.git
synced 2024-11-25 20:22:36 +01:00
[seaotterscans] add extractor
This commit is contained in:
parent
616464f8f8
commit
e23e4b1100
@ -1,6 +1,6 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright 2015,2016 Mike Fährmann
|
||||
# Copyright 2015-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
|
||||
@ -58,6 +58,7 @@ modules = [
|
||||
"rule34",
|
||||
"safebooru",
|
||||
"sankaku",
|
||||
"seaotterscans",
|
||||
"seiga",
|
||||
"senmanga",
|
||||
"sensescans",
|
||||
|
21
gallery_dl/extractor/seaotterscans.py
Normal file
21
gallery_dl/extractor/seaotterscans.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.seaotterscans.com/"""
|
||||
|
||||
from . import foolslide
|
||||
|
||||
|
||||
class SeaotterscansChapterExtractor(foolslide.FoolslideChapterExtractor):
|
||||
"""Extractor for manga-chapters from reader.seaotterscans.com"""
|
||||
category = "seaotterscans"
|
||||
pattern = foolslide.chapter_pattern("reader\.seaotterscans\.com")
|
||||
test = [("https://reader.seaotterscans.com/read/100_days/en/0/5/", {
|
||||
"url": "63d46b8883cc652dfe8bd5be4492160dd31f06a8",
|
||||
"keyword": "4d92576e23ee2a5058fd150690230091ee091868",
|
||||
})]
|
@ -67,6 +67,7 @@ Supported Sites
|
||||
- readcomiconline.to
|
||||
- readcomics.tv
|
||||
- reader.kireicake.com
|
||||
- reader.seaotterscans.com
|
||||
- rule34.xxx
|
||||
- safebooru.org
|
||||
- seiga.nicovideo.jp
|
||||
|
Loading…
Reference in New Issue
Block a user