40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
name: ATKHairy
|
|
sceneByURL:
|
|
- action: scrapeXPath
|
|
url:
|
|
- atkhairy.com/tour/
|
|
- atkpetites.com/tour/
|
|
- atkpremium.com/tour/
|
|
scraper: sceneScraper
|
|
xPathScrapers:
|
|
sceneScraper:
|
|
scene:
|
|
Studio:
|
|
Name:
|
|
selector: //span[@class='login']/a/@href
|
|
postProcess:
|
|
- replace:
|
|
- regex: .+join\.([^\.]+).+
|
|
with: $1
|
|
- map:
|
|
atkhairy: "ATK Natural & Hairy"
|
|
atkpetites: "ATK Petites"
|
|
atkpremium: "ATK Premium"
|
|
Performers:
|
|
Name: //div[@class='watchName']//text()
|
|
Title: //title/text()
|
|
Details: //div[contains(@class,'video-description')]//text()[not(contains(.,'Description'))]
|
|
Tags:
|
|
Name:
|
|
selector: //div[@class='video-tags tour_box left']/text()
|
|
split: " , "
|
|
Image:
|
|
selector: //div[@id='movie-poster']/@style
|
|
postProcess:
|
|
- replace:
|
|
- regex: .+(?:url\(")(.+)(?:".+)
|
|
with: $1
|
|
driver:
|
|
useCDP: true
|
|
# Last Updated July 04, 2021
|