diff --git a/docs/supportedsites.md b/docs/supportedsites.md index 64fecde9..1e441beb 100644 --- a/docs/supportedsites.md +++ b/docs/supportedsites.md @@ -1413,12 +1413,6 @@ Consider all listed sites to potentially be NSFW. Boards, Threads - - Wikieat - https://wikieat.club/ - Boards, Threads - - Smugloli https://smuglo.li/ diff --git a/gallery_dl/extractor/vichan.py b/gallery_dl/extractor/vichan.py index 79d7916e..654c4512 100644 --- a/gallery_dl/extractor/vichan.py +++ b/gallery_dl/extractor/vichan.py @@ -22,10 +22,6 @@ BASE_PATTERN = VichanExtractor.update({ "root": "https://8kun.top", "pattern": r"8kun\.top", }, - "wikieat": { - "root": "https://wikieat.club", - "pattern": r"wikieat\.club", - }, "smugloli": { "root": None, "pattern": r"smuglo(?:\.li|li\.net)", diff --git a/test/results/wikieat.py b/test/results/wikieat.py deleted file mode 100644 index f3c0d7f4..00000000 --- a/test/results/wikieat.py +++ /dev/null @@ -1,39 +0,0 @@ -# -*- coding: utf-8 -*- - -# 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. - -from gallery_dl.extractor import vichan - - -__tests__ = ( -{ - "#url" : "https://wikieat.club/cel/res/25321.html", - "#category": ("vichan", "wikieat", "thread"), - "#class" : vichan.VichanThreadExtractor, - "#pattern" : r"https://wikieat\.club/cel/src/\d+(-\d)?\.\w+", - "#count" : ">= 200", -}, - -{ - "#url" : "https://wikieat.club/cel/index.html", - "#category": ("vichan", "wikieat", "board"), - "#class" : vichan.VichanBoardExtractor, - "#pattern" : vichan.VichanThreadExtractor.pattern, - "#count" : ">= 100", -}, - -{ - "#url" : "https://wikieat.club/cel/catalog.html", - "#category": ("vichan", "wikieat", "board"), - "#class" : vichan.VichanBoardExtractor, -}, - -{ - "#url" : "https://wikieat.club/cel/2.html", - "#category": ("vichan", "wikieat", "board"), - "#class" : vichan.VichanBoardExtractor, -}, - -)