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,47 @@
name: "Jim Weathers Archives"
sceneByURL:
- action: scrapeXPath
url:
- jimweathersarchives.com
scraper: sceneScraper
performerByURL:
- action: scrapeXPath
url:
- jimweathersarchives.com
scraper: performerScraper
xPathScrapers:
sceneScraper:
scene:
Title: //div[@class='title_bar']/span/text()
URL: //div[@class='rearrangeTab options_block active']/a[@class='option_button']/@href
Details: //span[@class='update_description']
Date:
selector: //div[@class='gallery_info']/div[@class='table']/div[@class='row']/div[@class='cell update_date']
postProcess:
- parseDate: 01/02/2006
Image:
selector: //meta[@name="twitter:image"]/@content
postProcess:
- replace:
- regex: ^(.+)\-.+
with: $1-4x.jpg
Studio:
Name:
fixed: BondageCafe
Tags:
Name: //span[@class='update_tags']/a
Performers:
Name: //div[@class='gallery_info']/span[@class='update_models']/a
URL: //div[@class='gallery_info']/span[@class='update_models']/a/@href
performerScraper:
performer:
Name: //span[@class='title_bar_hilite']/text()
Gender:
fixed: female
Image:
selector: //img[contains(@class,'model_bio_thumb')]/@src0_3x
postProcess:
- replace:
- regex: ^
with: https://jimweathersarchives.com
# Last Updated September 13, 2022