65 lines
2.0 KiB
YAML
65 lines
2.0 KiB
YAML
name: VegasDreamsLLC
|
|
sceneByURL:
|
|
- action: scrapeXPath
|
|
url:
|
|
- asiansexdiary.com
|
|
- helloladyboy.com
|
|
- milftrip.com
|
|
- screwmetoo.com
|
|
scraper: sceneScraper
|
|
performerByURL:
|
|
- action: scrapeXPath
|
|
url:
|
|
- helloladyboy.com
|
|
scraper: performerScraper
|
|
xPathScrapers:
|
|
sceneScraper:
|
|
scene:
|
|
Title:
|
|
selector: //h1[@class="amp-single-title"]
|
|
Date:
|
|
selector: //i[@class="fa fa-calendar-o"]/following-sibling::text()
|
|
postProcess:
|
|
- parseDate: Jan 2, 2006
|
|
Performers:
|
|
Name: //div[@class="update-info"]/a
|
|
Details:
|
|
selector: //div[@class="cntn-wrp artl-cnt"]//p
|
|
concat: "\n\n"
|
|
Tags:
|
|
Name: //div[@class="amp-category"]//a
|
|
Image:
|
|
selector: //amp-img[@layout="fill"]/@src
|
|
Studio:
|
|
Name:
|
|
selector: //form[@role="search"]/@action
|
|
postProcess:
|
|
- map:
|
|
https://asiansexdiary.com: AsianSexDiary
|
|
https://helloladyboy.com: HelloLadyBoy
|
|
https://milftrip.com: MilfTrip
|
|
https://screwmetoo.com: ScrewMeToo
|
|
performerScraper:
|
|
performer:
|
|
Name: //*/h1[@class="amp-model-title"]/text()
|
|
Measurements: //*/span[@class="model-details" and text()="Measurements:"]/../text()
|
|
Height:
|
|
selector: //*/span[@class="model-details" and text()="Height:"]/../text()
|
|
postProcess:
|
|
- feetToCm: true
|
|
Weight:
|
|
selector: //*/span[@class="model-details" and text()="Weight:"]/../text()
|
|
postProcess:
|
|
- replace:
|
|
- regex: ([0-9]{2,3}).*
|
|
with: $1
|
|
- lbToKg: true
|
|
HairColor: //*/span[@class="model-details" and text()="Hair Color:"]/../text()
|
|
EyeColor: //*/span[@class="model-details" and text()="Eye Color:"]/../text()
|
|
Details:
|
|
selector: //*/div[@class="model-desc"]//text()
|
|
concat: "\n\n"
|
|
Image: //*/div/amp-img/@src
|
|
|
|
# Last Updated August 09, 2022
|