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: naughtyamerica
sceneByURL:
- action: scrapeXPath
url:
- naughtyamerica.com/scene/
scraper: sceneScraper
xPathScrapers:
sceneScraper:
common:
$sceneinfo: //div[@class="scene-info"]
scene:
Title: $sceneinfo/h1[@class="scene-title grey-text"]
Date:
selector: //div[@class="date-tags"]/span
postProcess:
- parseDate: Jan 2, 2006
Details:
selector: //div[@class="synopsis grey-text"]
postProcess:
- replace:
- regex: "Synopsis"
with: ""
Tags:
Name: //div[@class="categories grey-text"]/a
Performers:
Name: $sceneinfo/h2/div[@class="performer-list"]/a
Studio:
Name: $sceneinfo/h2/a[@class="site-title grey-text link"]
Image:
selector: //img[@class="start-card lazyload"]/@data-src|//img[@class="start-card"]/@src|//dl8-video[@id="vr_player"]/@poster|(//div[@class="overlays"]/a/picture)[1]/source[@type="image/jpeg"]/@data-srcset|//img[contains(@class,"start-card desktop-only")]/@data-srcset
postProcess:
- replace:
- regex: ^
with: "https:"
# Last Updated July 02, 2022