[seaotterscans] add extractor
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- 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
|
# 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
|
# it under the terms of the GNU General Public License version 2 as
|
||||||
@@ -58,6 +58,7 @@ modules = [
|
|||||||
"rule34",
|
"rule34",
|
||||||
"safebooru",
|
"safebooru",
|
||||||
"sankaku",
|
"sankaku",
|
||||||
|
"seaotterscans",
|
||||||
"seiga",
|
"seiga",
|
||||||
"senmanga",
|
"senmanga",
|
||||||
"sensescans",
|
"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
|
- readcomiconline.to
|
||||||
- readcomics.tv
|
- readcomics.tv
|
||||||
- reader.kireicake.com
|
- reader.kireicake.com
|
||||||
|
- reader.seaotterscans.com
|
||||||
- rule34.xxx
|
- rule34.xxx
|
||||||
- safebooru.org
|
- safebooru.org
|
||||||
- seiga.nicovideo.jp
|
- seiga.nicovideo.jp
|
||||||
|
|||||||
Reference in New Issue
Block a user