[seaotterscans] add extractor

pull/13/head
Mike Fährmann 8 years ago
parent 616464f8f8
commit e23e4b1100
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -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",

@ -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…
Cancel
Save