[pawoo] update URL pattern

adds support for 'https://pawoo.net/@.../media'
This commit is contained in:
Mike Fährmann
2018-04-02 13:00:59 +02:00
parent 7b562907c3
commit 64b22e0fc1

View File

@@ -55,7 +55,7 @@ class PawooExtractor(Extractor):
class PawooUserExtractor(PawooExtractor): class PawooUserExtractor(PawooExtractor):
"""Extractor for all images of an account/user on pawoo.net""" """Extractor for all images of an account/user on pawoo.net"""
subcategory = "user" subcategory = "user"
pattern = [r"(?:https?://)?pawoo\.net/(@[^/]+)/?$"] pattern = [r"(?:https?://)?pawoo\.net/(@[^/]+)(?:/media)?/?$"]
test = [ test = [
("https://pawoo.net/@kuroda", { ("https://pawoo.net/@kuroda", {
"url": "a3f9e7555f2b024554c0e9b6cbcc7991af13cf99", "url": "a3f9e7555f2b024554c0e9b6cbcc7991af13cf99",
@@ -64,6 +64,7 @@ class PawooUserExtractor(PawooExtractor):
("https://pawoo.net/@zZzZz/", { ("https://pawoo.net/@zZzZz/", {
"exception": exception.NotFoundError, "exception": exception.NotFoundError,
}), }),
("https://pawoo.net/@kuroda/media", None),
] ]
def __init__(self, match): def __init__(self, match):