This commit is contained in:
Christoph Califice
2025-10-09 20:05:31 -03:00
parent ed22ef22bc
commit 0a5f88d75a
1442 changed files with 101562 additions and 0 deletions

View File

@@ -0,0 +1,64 @@
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