diff --git a/gallery_dl/extractor/__init__.py b/gallery_dl/extractor/__init__.py index c18c3dbd..d460e482 100644 --- a/gallery_dl/extractor/__init__.py +++ b/gallery_dl/extractor/__init__.py @@ -49,7 +49,6 @@ modules = [ "kissmanga", "komikcast", "konachan", - "loveisover", "luscious", "mangadex", "mangafox", diff --git a/gallery_dl/extractor/loveisover.py b/gallery_dl/extractor/loveisover.py deleted file mode 100644 index d4d833b0..00000000 --- a/gallery_dl/extractor/loveisover.py +++ /dev/null @@ -1,22 +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. - -"""Extract images from https://archive.loveisover.me/""" - -from . import chan - - -class LoveisoverThreadExtractor(chan.FoolfuukaThreadExtractor): - """Extractor for images from threads on archive.loveisover.me""" - category = "loveisover" - root = "https://archive.loveisover.me" - pattern = [r"(?:https?://)?(?:archive\.)?loveisover\.me" - r"/([^/]+)/thread/(\d+)"] - test = [("https://archive.loveisover.me/c/thread/2898043/", { - "url": "f1531a84de4e25ed3ae768384f6be43a0f02db71", - })] diff --git a/test/test_results.py b/test/test_results.py index 89f46708..e8344a72 100644 --- a/test/test_results.py +++ b/test/test_results.py @@ -21,7 +21,6 @@ TRAVIS_SKIP = { # temporary issues, etc. BROKEN = { - "loveisover", # "Name or service not known" "pinterest", # access_token invalid ? "puremashiro", # online reader down }