Files
compose-projects-arr/stash/config/scrapers/community/Zishy/Zishy.yml
Christoph Califice 0a5f88d75a stash
2025-10-10 09:50:30 -03:00

55 lines
1.3 KiB
YAML

name: Zishy
sceneByURL:
- action: scrapeXPath
url:
- zishy.com/albums
scraper: sceneScraper
galleryByURL:
- action: scrapeXPath
url:
- zishy.com/albums
scraper: galleryScraper
xPathScrapers:
sceneScraper:
scene:
Title: &title
selector: //head/title
postProcess:
- replace:
- regex: ([\w ]*) - Zishy
with: $1
Details: &details
selector: //div[@id='descrip']
Date: &date
selector: //div[@id='headline']/span[last()]
postProcess:
- replace:
- regex: added on (\w{3}) (\d{2}). (\d{4})
with: $3-$1-$2
- parseDate: 2006-Jan-02
Image:
selector: //div[@class="player"]//@style[contains(.,"background")]
postProcess:
- replace:
- regex: .+url\((/uploads/.+)\);.+
with: https://www.zishy.com/$1
Studio: &studio
Name:
fixed: Zishy
Performers: &performers
Name:
selector: //span[@class='moreof']/a[text()]
postProcess:
- replace:
- regex: \#([\w\s]+)
with: $1
galleryScraper:
gallery:
Title: *title
Details: *details
Date: *date
Studio: *studio
Performers: *performers
# Last Updated February 26, 2023