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

45 lines
1.1 KiB
YAML

name: AbuseMe
sceneByURL:
- action: scrapeXPath
url:
- abuseme.com/video
scraper: sceneScraper
xPathScrapers:
sceneScraper:
scene:
Title: //h1[@class="shoot-title"]/text()
Date:
selector: //div[@class="playerHdr_rgt"]/text()
postProcess:
- replace:
- regex: (\w+:\s)(.+)
with: $2
- parseDate: Jan 2, 2006
Details: //div[@class="playerTxt"]
Tags:
Name:
selector: //meta[@http-equiv="keywords"]/@content
split: ","
# Bad way to get tags
Performers:
Name:
selector: //script[contains(.,"bbGaParams.shootModels")]/text()
postProcess:
- replace:
- regex: .+\[(".+").\].+
with: $1
- regex: ("\d+\s:\s)([^"]+)(")
with: $2
split: ","
Studio:
Name:
fixed: AbuseMe
Image:
selector: //img[@class="playerPic"]/@src
postProcess:
- replace:
- regex: ^\/\/
with: "https:"
# Last Updated August 03, 2020