diff --git a/docs/supportedsites.md b/docs/supportedsites.md index 17cee67d..7ba0f156 100644 --- a/docs/supportedsites.md +++ b/docs/supportedsites.md @@ -1716,8 +1716,8 @@ Consider all listed sites to potentially be NSFW. lolisafe and chibisafe - xBunkr - https://xbunkr.com/ + + Albums diff --git a/gallery_dl/extractor/lolisafe.py b/gallery_dl/extractor/lolisafe.py index 117b88bc..6fc06894 100644 --- a/gallery_dl/extractor/lolisafe.py +++ b/gallery_dl/extractor/lolisafe.py @@ -20,10 +20,6 @@ class LolisafeExtractor(BaseExtractor): BASE_PATTERN = LolisafeExtractor.update({ - "xbunkr": { - "root": "https://xbunkr.com", - "pattern": r"xbunkr\.com", - }, }) diff --git a/test/results/xbunkr.py b/test/results/xbunkr.py deleted file mode 100644 index a188d2e6..00000000 --- a/test/results/xbunkr.py +++ /dev/null @@ -1,28 +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 lolisafe - - -__tests__ = ( -{ - "#url" : "https://xbunkr.com/a/TA0bu3F4", - "#category": ("lolisafe", "xbunkr", "album"), - "#class" : lolisafe.LolisafeAlbumExtractor, - "#pattern" : r"https://media\.xbunkr\.com/[^.]+\.\w+", - "#count" : 861, - - "album_id" : "TA0bu3F4", - "album_name": "Hannahowo Onlyfans Photos", -}, - -{ - "#url" : "https://xbunkr.com/a/GNQc2I5d", - "#category": ("lolisafe", "xbunkr", "album"), - "#class" : lolisafe.LolisafeAlbumExtractor, -}, - -)