From edfd3d9fc9198b8ae15f8ebec378a500cf31ba27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Thu, 22 Feb 2018 23:05:13 +0100 Subject: [PATCH] [yeet] remove module - archive.yeet.net returns a 500 server error - yeet.net moved to yeet.rip, but the archive is gone --- gallery_dl/extractor/__init__.py | 1 - gallery_dl/extractor/yeet.py | 22 ---------------------- 2 files changed, 23 deletions(-) delete mode 100644 gallery_dl/extractor/yeet.py diff --git a/gallery_dl/extractor/__init__.py b/gallery_dl/extractor/__init__.py index abcb7bd8..18819abf 100644 --- a/gallery_dl/extractor/__init__.py +++ b/gallery_dl/extractor/__init__.py @@ -86,7 +86,6 @@ modules = [ "whatisthisimnotgoodwithcomputers", "worldthree", "yandere", - "yeet", "xvideos", "imagehosts", "directlink", diff --git a/gallery_dl/extractor/yeet.py b/gallery_dl/extractor/yeet.py deleted file mode 100644 index ed238380..00000000 --- a/gallery_dl/extractor/yeet.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.yeet.net/""" - -from . import chan - - -class YeetThreadExtractor(chan.FoolfuukaThreadExtractor): - """Extractor for images from threads on archive.yeet.net""" - category = "yeet" - root = "https://archive.yeet.net" - pattern = [r"(?:https?://)?archive\.yeet\.net/([^/]+)/thread/(\d+)"] - test = [("https://archive.yeet.net/yeet/thread/359/", { - "url": "ced64a1aadaafc4f359ab89d9f801050731803f1", - })] - referer = False