[imgwallet] add 'image' extractor (#8021)

This commit is contained in:
Mike Fährmann
2025-08-13 11:58:54 +02:00
parent 8581b3f7c5
commit bbdf584919
4 changed files with 38 additions and 0 deletions

View File

@@ -428,6 +428,15 @@ class ImgtaxiImageExtractor(ImagehostImageExtractor):
get_info = ImgdriveImageExtractor.get_info
class ImgwalletImageExtractor(ImagehostImageExtractor):
"""Extractor for single images from imgwallet.com"""
category = "imgwallet"
pattern = r"(?:https?://)?((?:www\.)?imgwallet\.com/img-(\w+)\.html)"
example = "https://imgwallet.com/img-0123456789abc.html"
get_info = ImgdriveImageExtractor.get_info
class SilverpicImageExtractor(ImagehostImageExtractor):
"""Extractor for single images from silverpic.com"""
category = "silverpic"