33 lines
1017 B
YAML
33 lines
1017 B
YAML
name: "PornstarPlatinum"
|
|
sceneByURL:
|
|
- action: scrapeXPath
|
|
url:
|
|
- pornstarplatinum.com/tour/model/
|
|
scraper: sceneScraper
|
|
xPathScrapers:
|
|
sceneScraper:
|
|
common:
|
|
$panel: //div[@class="panel-content"]
|
|
scene:
|
|
Title: //div[contains(@class,"video-slider-meta")]/h3/text()
|
|
Date: $panel/div[@class="video-author"]/span[2]/text()
|
|
Details: $panel/p/text()
|
|
Performers:
|
|
Name:
|
|
selector: //div[contains(@class,"video-slider-meta")]/h3/text()
|
|
postProcess:
|
|
- replace:
|
|
- regex: ^
|
|
with: "https://www.pornstarplatinum.com/tour/index.php?search="
|
|
- regex: \s
|
|
with: "+"
|
|
- subScraper: //div[@id="videos-list"]//span[@class="marker left"]
|
|
Tags:
|
|
Name:
|
|
selector: $panel//div[@class="tagcloud"]/a/text()
|
|
Studio:
|
|
Name:
|
|
fixed: "Pornstar Platinum"
|
|
Image: //video[@id="myVideo"]/@poster
|
|
# Last Updated January 08, 2021
|