This commit is contained in:
Christoph Califice
2025-10-09 20:05:31 -03:00
parent ed22ef22bc
commit 0a5f88d75a
1442 changed files with 101562 additions and 0 deletions

View File

@@ -0,0 +1,53 @@
name: PlayboyPlus
sceneByURL:
- action: scrapeXPath
url: &urls
- playboyplus.com
- pbp-ma.playboy.com
- pbp-ma-legacy.playboy.com
scraper: sceneScraper
queryURL: "{url}"
queryURLReplace:
url:
- regex: (?:https://)?(pbp-ma(-legacy)?.playboy.com)/gallery/([^/]*)(?:/vip)?
with: https://playboyplus.com/gallery/$3
galleryByURL:
- action: scrapeXPath
url: *urls
scraper: galleryScraper
queryURL: "{url}"
queryURLReplace:
url:
- regex: (?:https://)?(pbp-ma(-legacy)?.playboy.com)/gallery/([^/]*)(?:/vip)?
with: https://playboyplus.com/gallery/$3
xPathScrapers:
sceneScraper:
scene:
Title: &title
selector: //h1[@class="title"]
Date: &date
selector: //p[@class="date label"]
postProcess:
- parseDate: January 2, 2006
Performers: &performers
Name: //p[@class="contributorName"]//a[contains(@href, "profile")]
Details: &details
selector: //p[@class="description-truncated"] | //p[@class="description-truncated"]/following-sibling::*
postProcess:
- replace:
- regex: \s*\.{3}
with: ""
Image:
selector: //div[@class="imageContainer"]//img/@data-src
Studio: &studio
Name:
fixed: PlayboyPlus
galleryScraper:
gallery:
Title: *title
Date: *date
Performers: *performers
Photographer: //p[@class="contributorName"]//a[contains(@href, "photographer")]
Details: *details
Studio: *studio
# Last Updated March 27, 2023