28 lines
741 B
YAML
28 lines
741 B
YAML
name: "Producers Fun"
|
|
sceneByURL:
|
|
- action: scrapeXPath
|
|
url:
|
|
- producersfun.com/video/
|
|
scraper: sceneScraper
|
|
xPathScrapers:
|
|
sceneScraper:
|
|
scene:
|
|
Title: //div[@class="shadow video-details"]/h1/text()
|
|
Details: //div[@class="shadow video-details"]/p[not(@class)][1]
|
|
Date:
|
|
selector: //p[@class="video-date"]/text()[2]
|
|
postProcess:
|
|
- replace:
|
|
- regex: (st|nd|rd|th)\,
|
|
with: ","
|
|
- parseDate: January 2, 2006
|
|
Image: //section[@class="top-wrapper"]/div//video/@poster
|
|
Studio:
|
|
Name:
|
|
fixed: Producers Fun
|
|
Tags:
|
|
Name:
|
|
selector: //p[@class="video-tags"]/a/text()
|
|
|
|
# Last Updated June 23, 2022
|