diff --git a/gallery_dl/extractor/__init__.py b/gallery_dl/extractor/__init__.py index 680c75a4..e91a2e4f 100644 --- a/gallery_dl/extractor/__init__.py +++ b/gallery_dl/extractor/__init__.py @@ -82,7 +82,6 @@ modules = [ "tumblr", "twitter", "warosu", - "whatisthisimnotgoodwithcomputers", "worldthree", "yandere", "xvideos", diff --git a/gallery_dl/extractor/whatisthisimnotgoodwithcomputers.py b/gallery_dl/extractor/whatisthisimnotgoodwithcomputers.py deleted file mode 100644 index 3b6ca152..00000000 --- a/gallery_dl/extractor/whatisthisimnotgoodwithcomputers.py +++ /dev/null @@ -1,23 +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.whatisthisimnotgoodwithcomputers.com""" - -from . import chan - - -class WitingwcThreadExtractor(chan.FoolfuukaThreadExtractor): - """Extractor for archive.whatisthisimnotgoodwithcomputers.com""" - category = "whatisthisimnotgoodwithcomputers" - root = "https://archive.whatisthisimnotgoodwithcomputers.com" - pattern = [r"(?:https?://)?archive\.whatisthisimnotgoodwithcomputers\.com/" - r"([^/]+)/thread/(\d+)"] - test = [(("https://archive.whatisthisimnotgoodwithcomputers.com/" - "ref/thread/1094/"), { - "url": "cf8f6d4b4950767d2131de308ebc96eec05b04f6", - })] diff --git a/scripts/build_supportedsites.py b/scripts/build_supportedsites.py index 987f6293..34e505c9 100755 --- a/scripts/build_supportedsites.py +++ b/scripts/build_supportedsites.py @@ -94,7 +94,6 @@ AUTH_MAP = { IGNORE_LIST = ( "oauth", - "whatisthisimnotgoodwithcomputers", ) diff --git a/test/test_results.py b/test/test_results.py index 045de813..abc64b9e 100644 --- a/test/test_results.py +++ b/test/test_results.py @@ -23,7 +23,6 @@ TRAVIS_SKIP = { # temporary issues, etc. BROKEN = { "subapics", - "whatisthisimnotgoodwithcomputers", }