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,35 @@
name: "1 Pass For All Sites"
sceneByURL:
- action: scrapeXPath
url:
- 1passforallsites.com/episode/
scraper: sceneScraper
xPathScrapers:
sceneScraper:
scene:
Studio:
Name:
selector: //a[contains(@href,'?site=')]
Title:
selector: //title
postProcess:
- replace:
- regex: (^.+) - 1 .+$
with: $1
Details: //div[@class="sp-info-txt"]/p/text()
Performers:
Name:
selector: //p[@class="sp-info-name"]/a/text()
Tags:
Name:
selector: //p[@class="niches-list"]/a/text()
Date:
selector: //li[contains(text(),"Added:")]
postProcess:
- replace:
- regex: "Added\\: (.+)"
with: $1
- parseDate: 2 Jan 2006
Image: //video/@poster
# Last Updated July 12, 2023