Add performer scraper to JavHD

This commit is contained in:
Maista6969 2024-04-06 23:44:49 +02:00
parent fd1b294984
commit 503f2c8879
No known key found for this signature in database
2 changed files with 30 additions and 4 deletions

View File

@ -917,7 +917,7 @@ jav888.com|KBProductions.yml|:heavy_check_mark:|:x:|:x:|:heavy_check_mark:|Pytho
javbus.com|JavBus.yml|:heavy_check_mark:|:x:|:x:|:heavy_check_mark:|-|-
javdb.com|javdb.yml|:heavy_check_mark:|:x:|:heavy_check_mark:|:x:|-|Database
javdb36.com|javdb.yml|:heavy_check_mark:|:x:|:heavy_check_mark:|:x:|-|Database
javhd.com|JavHD.yml|:heavy_check_mark:|:x:|:x:|:x:|-|JAV Uncensored
javhd.com|JavHD.yml|:heavy_check_mark:|:x:|:x:|:heavy_check_mark:|-|JAV Uncensored
javhub.com|JavHub.yml|:heavy_check_mark:|:x:|:x:|:x:|-|JAV Uncensored
javlibrary.com|JavLibrary.yml|:heavy_check_mark:|:x:|:heavy_check_mark:|:x:|-|JAV
javlibrary.com|JavLibrary_python.yml|:heavy_check_mark:|:x:|:x:|:x:|Python|JAV

View File

@ -4,9 +4,14 @@ sceneByURL:
url:
- javhd.com/en/id/
- javhd.com/en/studio/
scraper: sceneScraper
scraper: javhd
performerByURL:
- action: scrapeXPath
url:
- javhd.com/en/model/
scraper: javhd
xPathScrapers:
sceneScraper:
javhd:
common:
$script: //script[@type="application/ld+json"]/text()
scene:
@ -34,4 +39,25 @@ xPathScrapers:
Name:
fixed: JavHD
URL: //link[@rel="canonical"]/@href
# Last Updated October 28, 2022
performer:
Name: //h1
Image: //div[@class="avatar"]/img/@src
URL: //link[@rel="canonical"]/@href
Details: //div[@class="info"]/p
Birthdate:
selector: //strong[contains(., "Birth date")]/following-sibling::*
postProcess:
- parseDate: 2 January 2006
EyeColor: //strong[contains(., "Eye color")]/following-sibling::*
HairColor: //strong[contains(., "Hair color")]/following-sibling::*
Height:
selector: //strong[contains(., "Height")]/following-sibling::*
postProcess:
- replace:
- regex: (\d+).*
with: $1
Weight: //strong[contains(., "Weight")]/following-sibling::*
Ethnicity: //strong[contains(., "Ethnicity")]/following-sibling::*
FakeTits: //strong[contains(., "Breast factor")]/following-sibling::*
# Last Updated April 05, 2024