33 lines
896 B
YAML
33 lines
896 B
YAML
name: meanawolf
|
|
sceneByURL:
|
|
- action: scrapeXPath
|
|
url:
|
|
- meanawolf.com/scenes/
|
|
scraper: sceneScraper
|
|
xPathScrapers:
|
|
sceneScraper:
|
|
scene:
|
|
Title: //h1/text()
|
|
Date:
|
|
selector: //span[text()="ADDED:"]/following-sibling::text()
|
|
postProcess:
|
|
- parseDate: January 2, 2006
|
|
Details:
|
|
selector: //div[@class="trailerContent"]/p/text()
|
|
concat: "\n\n"
|
|
Tags:
|
|
Name: //span[text()="TAGS:"]/following-sibling::a/text()
|
|
Performers:
|
|
Name: //span[text()="FEATURING:"]/following-sibling::a/text()
|
|
Studio:
|
|
Name:
|
|
fixed: MeanaWolf
|
|
Image:
|
|
selector: //script[contains(.,"useimage")]/text()
|
|
postProcess:
|
|
- replace:
|
|
- regex: (.+useimage\s=\s")(.*)(";function\sdownload\(f\).+)
|
|
with: $2
|
|
|
|
# Last Updated July 31, 2022
|