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,44 @@
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