33 lines
874 B
YAML
33 lines
874 B
YAML
name: HeavyOnHotties
|
|
sceneByURL:
|
|
- action: scrapeXPath
|
|
url:
|
|
- heavyonhotties.com
|
|
scraper: sceneScraper
|
|
xPathScrapers:
|
|
sceneScraper:
|
|
scene:
|
|
Title:
|
|
selector: //div[@class="vid-title clearfix text-center-mobile"]/h2
|
|
postProcess:
|
|
- replace:
|
|
- regex: .+\"([^\"]+)\"
|
|
with: $1
|
|
Date:
|
|
selector: //span[contains(@class, "released title")]/strong/text()
|
|
postProcess:
|
|
- parseDate: Jan 2, 2006
|
|
Details: //div[@class="col-md-9 col-sm-8 clearfix"]/p
|
|
Performers:
|
|
Name: //span[@class="feature title"]//a
|
|
Image:
|
|
selector: //video[@id="video"]/@poster
|
|
postProcess:
|
|
- replace:
|
|
- regex: ^//
|
|
with: "https://"
|
|
Studio:
|
|
Name:
|
|
fixed: HeavyOnHotties
|
|
# Last Updated November 30, 2023
|