Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[wikifeet/wikifeetx] add 'gallery' extractor #3537

Merged
merged 1 commit into from
Jan 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/supportedsites.md
Original file line number Diff line number Diff line change
Expand Up @@ -931,6 +931,18 @@ Consider all sites to be NSFW unless otherwise known.
<td>Artists, Artist Listings, Artworks, individual Images</td>
<td></td>
</tr>
<tr>
<td>Wikifeet</td>
<td>https://www.wikifeet.com/</td>
<td>Galleries</td>
<td></td>
</tr>
<tr>
<td>Wikifeetx</td>
<td>https://www.wikifeetx.com/</td>
<td>Galleries</td>
<td></td>
</tr>
<tr>
<td>xHamster</td>
<td>https://xhamster.com/</td>
Expand Down
1 change: 1 addition & 0 deletions gallery_dl/extractor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@
"webtoons",
"weibo",
"wikiart",
"wikifeet",
"xhamster",
"xvideos",
"zerochan",
Expand Down
118 changes: 118 additions & 0 deletions gallery_dl/extractor/wikifeet.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
# -*- 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.

"""Extractors for https://www.wikifeet.com/"""

from .common import GalleryExtractor
from .. import text
import json


class WikifeetGalleryExtractor(GalleryExtractor):
"""Extractor for image galleries from wikifeet.com"""
category = "wikifeet"
directory_fmt = ("{category}", "{celebrity}")
filename_fmt = "{category}_{celeb}_{pid}.{extension}"
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" : "7.5 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" : "[NOT SET]",
"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,
},
}),
)

def __init__(self, match):
self.root = text.root_from_url(match.group(0))
if "wikifeetx.com" in self.root:
self.category = "wikifeetx"
self.type = "men" if "://men." in self.root else "women"
self.celeb = match.group(1)
GalleryExtractor.__init__(self, match, self.root + "/" + self.celeb)

def metadata(self, page):
extr = text.extract_from(page)
return {
"celeb" : self.celeb,
"type" : self.type,
"rating" : text.parse_float(extr('"ratingValue": "', '"')),
"celebrity" : text.unescape(extr("times'>", "</h1>")),
"shoesize" : text.remove_html(extr("Shoe Size:", "edit")),
"birthplace": text.remove_html(extr("Birthplace:", "edit")),
"birthday" : text.parse_datetime(text.remove_html(
extr("Birth Date:", "edit")), "%Y-%m-%d"),
}

def images(self, page):
tagmap = {
"C": "Close-up",
"T": "Toenails",
"N": "Nylons",
"A": "Arches",
"S": "Soles",
"B": "Barefoot",
}
ufmt = "https://pics.wikifeet.com/" + self.celeb + "-Feet-{}.jpg"
return [
(ufmt.format(data["pid"]), {
"pid" : data["pid"],
"width" : data["pw"],
"height": data["ph"],
"tags" : [tagmap[tag] for tag in data["tags"]],
})
for data in json.loads(text.extr(page, "['gdata'] = ", ";"))
]
4 changes: 4 additions & 0 deletions scripts/supportedsites.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,10 @@ def build_extractor_list():
default["mangalife"] = default["mangasee"]
domains["mangalife"] = "https://manga4life.com/"

# add wikifeetx.com
default["wikifeetx"] = default["wikifeet"]
domains["wikifeetx"] = "https://www.wikifeetx.com/"

return categories, domains


Expand Down