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,69 @@
name: "We Are Hairy"
sceneByURL:
- action: scrapeXPath
url:
- wearehairy.com
scraper: sceneScraper
galleryByURL:
- action: scrapeXPath
url:
- wearehairy.com/models
scraper: galleryScraper
performerByURL:
- action: scrapeXPath
url:
- wearehairy.com/models
scraper: performerScraper
xPathScrapers:
sceneScraper:
scene:
Title: &title //title
Date: &date
selector: //time/@datetime
postProcess:
- parseDate: 2006-01-02
Details: &details //meta[@name="description"]/@content
Tags: &tags
Name: //div[@class="tagline"]//a
Image:
selector: //meta[@itemprop="thumbnailUrl"]/@content
postProcess:
- replace:
- regex: \/\/(.*)
with: https://$1
Performers: &performers
Name: //div[@class="meet"]//a
Director: &director //h3[contains(text(),"Shot by")]/following-sibling::p
Studio: &studio
Name:
fixed: We Are Hairy
galleryScraper:
gallery:
Title: *title
Date: *date
Studio: *studio
Performers: *performers
Tags: *tags
Details: *details
Photographer: *director
performerScraper:
performer:
Name: //span/span[@itemprop="name"]/text()
Gender:
fixed: Female
# Uncomment to scrape performer image
# Image:
# selector: //div[@class="lhs"]/img/@src
Height:
selector: //p[@id="height_both"]/text()
postProcess:
- replace:
- regex: .*(\d{3}) cm
with: $1
Weight:
selector: //p[@id="weight_both"]/text()
postProcess:
- replace:
- regex: .*(\d{2,}) kg
with: $1
# Last Updated January 27, 2024

View File

@@ -0,0 +1,9 @@
id: WeAreHairy
name: We Are Hairy
metadata: {}
version: 86bbabc
date: "2024-01-27 04:45:56"
requires: []
source_repository: https://stashapp.github.io/CommunityScrapers/stable/index.yml
files:
- WeAreHairy.yml