summaryrefslogtreecommitdiffstats
path: root/gallery_dl/extractor/wikifeet.py
diff options
context:
space:
mode:
Diffstat (limited to 'gallery_dl/extractor/wikifeet.py')
-rw-r--r--gallery_dl/extractor/wikifeet.py57
1 files changed, 1 insertions, 56 deletions
diff --git a/gallery_dl/extractor/wikifeet.py b/gallery_dl/extractor/wikifeet.py
index 5f02e94..d3586c0 100644
--- a/gallery_dl/extractor/wikifeet.py
+++ b/gallery_dl/extractor/wikifeet.py
@@ -18,62 +18,7 @@ class WikifeetGalleryExtractor(GalleryExtractor):
archive_fmt = "{type}_{celeb}_{pid}"
pattern = (r"(?:https?://)(?:(?:www\.)?wikifeetx?|"
r"men\.wikifeet)\.com/([^/?#]+)")
- test = (
- ("https://www.wikifeet.com/Madison_Beer", {
- "pattern": (r"https://pics\.wikifeet\.com/Madison_Beer"
- r"-Feet-\d+\.jpg"),
- "count" : ">= 352",
- "keyword": {
- "celeb" : "Madison_Beer",
- "celebrity" : "Madison Beer",
- "birthday" : "dt:1999-03-05 00:00:00",
- "birthplace": "United States",
- "rating" : float,
- "pid" : int,
- "width" : int,
- "height" : int,
- "shoesize" : "9 US",
- "type" : "women",
- "tags" : list,
- },
- }),
- ("https://www.wikifeetx.com/Tifa_Quinn", {
- "pattern": (r"https://pics\.wikifeet\.com/Tifa_Quinn"
- r"-Feet-\d+\.jpg"),
- "count" : ">= 9",
- "keyword": {
- "celeb" : "Tifa_Quinn",
- "celebrity" : "Tifa Quinn",
- "birthday" : "[NOT SET]",
- "birthplace": "United States",
- "rating" : float,
- "pid" : int,
- "width" : int,
- "height" : int,
- "shoesize" : "4 US",
- "type" : "women",
- "tags" : list,
- },
- }),
- ("https://men.wikifeet.com/Chris_Hemsworth", {
- "pattern": (r"https://pics\.wikifeet\.com/Chris_Hemsworth"
- r"-Feet-\d+\.jpg"),
- "count" : ">= 860",
- "keyword": {
- "celeb" : "Chris_Hemsworth",
- "celebrity" : "Chris Hemsworth",
- "birthday" : "dt:1983-08-11 00:00:00",
- "birthplace": "Australia",
- "rating" : float,
- "pid" : int,
- "width" : int,
- "height" : int,
- "shoesize" : "12.5 US",
- "type" : "men",
- "tags" : list,
- },
- }),
- )
+ example = "https://www.wikifeet.com/CELEB"
def __init__(self, match):
self.root = text.root_from_url(match.group(0))