From d96b3474e56541cd219dc8ad77bdccf60e7fc0e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Sat, 28 Apr 2018 14:20:59 +0200 Subject: [PATCH] [puremashiro] remove module site has been unreachable for a couple of weeks and now the DNS record is gone as well --- docs/supportedsites.rst | 1 - gallery_dl/extractor/__init__.py | 1 - gallery_dl/extractor/puremashiro.py | 34 ----------------------------- test/test_results.py | 1 - 4 files changed, 37 deletions(-) delete mode 100644 gallery_dl/extractor/puremashiro.py diff --git a/docs/supportedsites.rst b/docs/supportedsites.rst index 8a2da995..eaa14a72 100644 --- a/docs/supportedsites.rst +++ b/docs/supportedsites.rst @@ -57,7 +57,6 @@ Pawoo https://pawoo.net Images from Users, Imag Pinterest https://www.pinterest.com Boards, Pins, pin.it Links Pixiv https://www.pixiv.net/ |Images from Use-4| Required PowerManga https://powermanga.org/ Chapters, Manga -Pure Mashiro http://reader.puremashiro.moe/ Chapters, Manga Read Comic Online http://readcomiconline.to/ Comic-Issues, Comics RebeccaBlackTech https://rbt.asia/ Threads Reddit https://reddit.com/ individual Images, Submissions, Subreddits Optional (OAuth) diff --git a/gallery_dl/extractor/__init__.py b/gallery_dl/extractor/__init__.py index 75e62761..3787f8d8 100644 --- a/gallery_dl/extractor/__init__.py +++ b/gallery_dl/extractor/__init__.py @@ -64,7 +64,6 @@ modules = [ "pinterest", "pixiv", "powermanga", - "puremashiro", "readcomiconline", "rebeccablacktech", "reddit", diff --git a/gallery_dl/extractor/puremashiro.py b/gallery_dl/extractor/puremashiro.py deleted file mode 100644 index 00699faa..00000000 --- a/gallery_dl/extractor/puremashiro.py +++ /dev/null @@ -1,34 +0,0 @@ -# -*- coding: utf-8 -*- - -# Copyright 2018 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. - -"""Extractors for http://reader.puremashiro.moe/""" - -from . import foolslide - - -class PuremashiroChapterExtractor(foolslide.FoolslideChapterExtractor): - """Extractor for manga-chapters from reader.puremashiro.moe""" - category = "puremashiro" - pattern = foolslide.chapter_pattern(r"reader\.puremashiro\.moe") - test = [(("http://reader.puremashiro.moe" - "/read/parallel-paradise-eng/en-us/0/20/"), { - "url": "00d5bc9cbb413ed584ddb091ae2418ca7801b136", - "keyword": "73bba3222758927e5a7cdc9e1db9d8307fe944c0", - })] - scheme = "http" - - -class PuremashiroMangaExtractor(foolslide.FoolslideMangaExtractor): - """Extractor for manga from reader.puremashiro.moe""" - category = "puremashiro" - pattern = foolslide.manga_pattern(r"reader\.puremashiro\.moe") - test = [("http://reader.puremashiro.moe/series/hayate-no-gotoku/", { - "url": "0cf77a623bff35b43323427a8fd1e40ff0e13c09", - "keyword": "1b57d724b259a1d81b6352d889a1aa5eb86a6ef9", - })] - scheme = "http" diff --git a/test/test_results.py b/test/test_results.py index 3dfd6fcc..b20fcf67 100644 --- a/test/test_results.py +++ b/test/test_results.py @@ -21,7 +21,6 @@ TRAVIS_SKIP = { # temporary issues, etc. BROKEN = { - "puremashiro", # online reader down }