diff --git a/docs/supportedsites.md b/docs/supportedsites.md index 111cef65..dafd0f27 100644 --- a/docs/supportedsites.md +++ b/docs/supportedsites.md @@ -1285,12 +1285,6 @@ Consider all sites to be NSFW unless otherwise known. Shimmie2 Instances - - meme.museum - https://meme.museum/ - Posts, Tag Searches - - Loudbooru https://loudbooru.com/ diff --git a/gallery_dl/extractor/shimmie2.py b/gallery_dl/extractor/shimmie2.py index 99dc9034..912e6013 100644 --- a/gallery_dl/extractor/shimmie2.py +++ b/gallery_dl/extractor/shimmie2.py @@ -66,10 +66,6 @@ class Shimmie2Extractor(BaseExtractor): INSTANCES = { - "mememuseum": { - "root": "https://meme.museum", - "pattern": r"meme\.museum", - }, "loudbooru": { "root": "https://loudbooru.com", "pattern": r"loudbooru\.com", diff --git a/scripts/supportedsites.py b/scripts/supportedsites.py index 59d15192..7dd69c56 100755 --- a/scripts/supportedsites.py +++ b/scripts/supportedsites.py @@ -85,7 +85,6 @@ CATEGORY_MAP = { "mangaread" : "MangaRead", "mangasee" : "MangaSee", "mastodon.social": "mastodon.social", - "mememuseum" : "meme.museum", "myhentaigallery": "My Hentai Gallery", "myportfolio" : "Adobe Portfolio", "naverwebtoon" : "NaverWebtoon", diff --git a/test/results/mememuseum.py b/test/results/mememuseum.py deleted file mode 100644 index 6a93d3f2..00000000 --- a/test/results/mememuseum.py +++ /dev/null @@ -1,38 +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 shimmie2 - - -__tests__ = ( -{ - "#url" : "https://meme.museum/post/list/animated/1", - "#category": ("shimmie2", "mememuseum", "tag"), - "#class" : shimmie2.Shimmie2TagExtractor, - "#pattern" : r"https://meme\.museum/_images/\w+/\d+%20-%20", - "#count" : ">= 30", -}, - -{ - "#url" : "https://meme.museum/post/view/10243", - "#category": ("shimmie2", "mememuseum", "post"), - "#class" : shimmie2.Shimmie2PostExtractor, - "#pattern" : r"https://meme\.museum/_images/105febebcd5ca791ee332adc49971f78/10243%20-%20g%20beard%20open_source%20richard_stallman%20stallman%20tagme%20text\.jpg", - "#sha1_content": "45565f3f141fc960a8ae1168b80e718a494c52d2", - - "extension" : "jpg", - "file_url" : "https://meme.museum/_images/105febebcd5ca791ee332adc49971f78/10243%20-%20g%20beard%20open_source%20richard_stallman%20stallman%20tagme%20text.jpg", - "filename" : "10243 - g beard open_source richard_stallman stallman tagme text", - "height" : 451, - "id" : 10243, - "md5" : "105febebcd5ca791ee332adc49971f78", - "size" : 0, - "subcategory": "post", - "tags" : "/g/ beard open_source richard_stallman stallman tagme text", - "width" : 480, -}, - -)