stash
This commit is contained in:
73
stash/config/scrapers/community/SpunkWorthy/SpunkWorthy.yml
Normal file
73
stash/config/scrapers/community/SpunkWorthy/SpunkWorthy.yml
Normal file
@@ -0,0 +1,73 @@
|
||||
name: SpunkWorthy
|
||||
sceneByURL:
|
||||
- action: scrapeXPath
|
||||
url:
|
||||
- spunkworthy.com/preview/view_video
|
||||
scraper: sceneScraper
|
||||
|
||||
performerByURL:
|
||||
- action: scrapeXPath
|
||||
url:
|
||||
- spunkworthy.com/preview/view_guy
|
||||
scraper: performerScraper
|
||||
|
||||
xPathScrapers:
|
||||
sceneScraper:
|
||||
scene:
|
||||
Title:
|
||||
selector: //p[contains(@class, 'h1')]/span[contains(@class, 'h2')]/text()
|
||||
Performers:
|
||||
Name:
|
||||
selector: //div[@class="scene_models"]//p/a/text()
|
||||
postProcess:
|
||||
- replace:
|
||||
- regex: "More of "
|
||||
with: ""
|
||||
URL:
|
||||
selector: //div[@class="scene_models"]//p/a/@href
|
||||
postProcess:
|
||||
- replace:
|
||||
- regex: "(.*)"
|
||||
with: "https://www.spunkworthy.com$1"
|
||||
Details:
|
||||
selector: //div[contains(@class, 'video_synopsis')]//p[not(ancestor::div[@class="scene_models"]) and not(@class)][not (starts-with(text(),'Tags:'))]/text()
|
||||
concat: "\n\n"
|
||||
Tags:
|
||||
Name: //div[contains(@class, 'video_synopsis')]//p[contains(text(),"Tags:")]/a/text()
|
||||
Image:
|
||||
selector: //div[contains(@class, 'video_player')]/img[1]/@src
|
||||
postProcess:
|
||||
- replace:
|
||||
- regex: "(.*)"
|
||||
with: "https://www.spunkworthy.com$1"
|
||||
Studio:
|
||||
Name:
|
||||
fixed: SpunkWorthy
|
||||
|
||||
performerScraper:
|
||||
performer:
|
||||
Name: //p[contains(@class, 'h1')]/span[contains(@class, 'h2')]/text()
|
||||
Gender:
|
||||
fixed: Male
|
||||
Weight:
|
||||
selector: //div[@class='model_left']/p[1]/text()[contains(.,'Weight')]
|
||||
postProcess:
|
||||
- replace:
|
||||
- regex: "Weight: "
|
||||
with: ""
|
||||
- lbToKg: true
|
||||
Height:
|
||||
selector: //div[@class='model_left']/p[1]/text()[contains(.,'Height')]
|
||||
postProcess:
|
||||
- replace:
|
||||
- regex: "Height: "
|
||||
with: ""
|
||||
- feetToCm: true
|
||||
Image:
|
||||
selector: //div[@class='model_left']/img[1]/@src
|
||||
postProcess:
|
||||
- replace:
|
||||
- regex: "(.*)"
|
||||
with: "https://www.spunkworthy.com$1"
|
||||
|
||||
# Last Updated October 02, 2023
|
||||
9
stash/config/scrapers/community/SpunkWorthy/manifest
Executable file
9
stash/config/scrapers/community/SpunkWorthy/manifest
Executable file
@@ -0,0 +1,9 @@
|
||||
id: SpunkWorthy
|
||||
name: SpunkWorthy
|
||||
metadata: {}
|
||||
version: 1a4717a
|
||||
date: "2023-10-01 23:31:32"
|
||||
requires: []
|
||||
source_repository: https://stashapp.github.io/CommunityScrapers/stable/index.yml
|
||||
files:
|
||||
- SpunkWorthy.yml
|
||||
Reference in New Issue
Block a user