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,83 @@
name: "VRLatina"
sceneByURL:
- action: scrapeXPath
url: &urlSel
- vrlatina.com/video
scraper: sceneScraper
movieByURL:
- action: scrapeXPath
url: *urlSel
scraper: movieScraper
performerByURL:
- action: scrapeXPath
url:
- vrlatina.com
scraper: performerScraper
xPathScrapers:
sceneScraper:
scene:
Title: //meta[@property="og:title"]/@content
Date: &dateAttr
selector: //div[contains( text(), "Release date:")]/following-sibling::span
postProcess:
- parseDate: Jan 02, 2006
Details: &detailsSel
selector: //meta[@property="og:description"]/@content
Tags:
Name: //a[@class="tag"]/@title
Performers:
Name: //div[@class="content-links -models"]//a/span
URL: //div[@class="content-links -models"]//a/@href
Studio:
Name: &studioName
fixed: VRLatina
Image: &imageSel
selector: //meta[@property="og:image"]/@content
postProcess:
- replace:
- regex: ^
with: "https:"
Movies:
Name: &movieName //title
Date: *dateAttr
Duration: &durationAttr //div[@class="info-elem -length -time"]/span[@class="sub-label"]
Synopsis: *detailsSel
URL: //meta[@property="og:url"]/@content
movieScraper:
movie:
Name: *movieName
Date: *dateAttr
Duration: *durationAttr
Studio:
Name: *studioName
Synopsis: *detailsSel
FrontImage: *imageSel
performerScraper:
performer:
Name: //span[text()="Name:"]/following-sibling::span
Gender:
fixed: Female
Aliases: //span[text()="Aka:"]/following-sibling::span
Birthdate:
selector: //span[text()="Dob:"]/following-sibling::span
postProcess:
- parseDate: "2006-01-02"
Height:
selector: //span[text()="Height:"]/following-sibling::span
postProcess:
- replace:
- regex: " cm"
with: ""
Weight:
selector: //span[text()="Weight:"]/following-sibling::span
postProcess:
- replace:
- regex: " Kg"
with: ""
Measurements: //span[text()="Measurements:"]/following-sibling::span
HairColor: //span[text()="Hair:"]/following-sibling::span
EyeColor: //span[text()="Eyes:"]/following-sibling::span
Ethnicity: //span[text()="Ethnicity:"]/following-sibling::span
Image: //div[@class="model-avatar"]/div[@class="image"]/img/@src
Details: //span[text()="Biography:"]/following-sibling::span
# Last Updated December 22, 2021