From 2974d782a36022133756a452afe2e5bafce614be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Sat, 20 May 2017 11:18:44 +0200 Subject: [PATCH] [yomanga] remove module site has been shut down --- docs/supportedsites.rst | 2 -- gallery_dl/extractor/__init__.py | 1 - gallery_dl/extractor/yomanga.py | 30 ------------------------------ test/test_extractors.py | 2 +- 4 files changed, 1 insertion(+), 34 deletions(-) delete mode 100644 gallery_dl/extractor/yomanga.py diff --git a/docs/supportedsites.rst b/docs/supportedsites.rst index 10912d70..d5d974b5 100644 --- a/docs/supportedsites.rst +++ b/docs/supportedsites.rst @@ -115,8 +115,6 @@ Supported Sites +-------------------+---------------------------------------+----------------------------------------------------------+ |Yandere |https://yande.re/ |Pools, Posts, Tag-Searches | +-------------------+---------------------------------------+----------------------------------------------------------+ -|YoManga |https://yomanga.co/ |Chapters, Manga | -+-------------------+---------------------------------------+----------------------------------------------------------+ |Yonkou Productions |https://yonkouprod.com/ |Chapters, Manga | +-------------------+---------------------------------------+----------------------------------------------------------+ |Chronos |http://chronos.to/ |individual Images | diff --git a/gallery_dl/extractor/__init__.py b/gallery_dl/extractor/__init__.py index 84b96126..5800315c 100644 --- a/gallery_dl/extractor/__init__.py +++ b/gallery_dl/extractor/__init__.py @@ -66,7 +66,6 @@ modules = [ "twitter", "worldthree", "yandere", - "yomanga", "yonkouprod", "imagehosts", "recursive", diff --git a/gallery_dl/extractor/yomanga.py b/gallery_dl/extractor/yomanga.py deleted file mode 100644 index 7c56656a..00000000 --- a/gallery_dl/extractor/yomanga.py +++ /dev/null @@ -1,30 +0,0 @@ -# -*- 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. - -"""Extractors for https://yomanga.co/""" - -from . import foolslide - - -class YomangaChapterExtractor(foolslide.FoolslideChapterExtractor): - """Extractor for manga-chapters from yomanga.co""" - category = "yomanga" - pattern = foolslide.chapter_pattern(r"(?:www\.)?yomanga\.co/reader") - test = [("https://yomanga.co/reader/read/uwakoi/en/0/2/", { - "url": "4b5d8fc5902f03647cc876cf6643849e5bc05455", - })] - single = False - - -class YomangaMangaExtractor(foolslide.FoolslideMangaExtractor): - """Extractor for manga from yomanga.co""" - category = "yomanga" - pattern = foolslide.manga_pattern(r"(?:www\.)?yomanga\.co/reader") - test = [("https://yomanga.co/reader/series/6_weapons/", { - "url": "19a4828d3a06a4c89c885847c83af54ec1add0f7", - })] diff --git a/test/test_extractors.py b/test/test_extractors.py index 86a26d29..b95d2076 100644 --- a/test/test_extractors.py +++ b/test/test_extractors.py @@ -51,7 +51,7 @@ skip = [ # dont work on travis-ci "exhentai", "kissmanga", "mangafox", "dynastyscans", "nijie", # temporary issues - "yomanga", + "imagebam", ] # enable selective testing for direct calls if __name__ == '__main__' and len(sys.argv) > 1: