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,39 @@
name: LustCinema
sceneByURL:
- action: scrapeXPath
url:
- lustcinema.com
scraper: sceneScraper
xPathScrapers:
sceneScraper:
scene:
Title: //div[contains(@class,"my-3")]/img/@name
Date:
selector: //script[@type='application/ld+json' and contains(., 'dateCreated')]/text()
postProcess:
- replace:
- regex: .*dateCreated(?:[\"\s:])+(\d+-\d+-\d+) .*
with: $1
- parseDate: 2006-01-02
Details:
selector: //script[contains(.,"window.__NUXT")]/text()
postProcess:
- replace:
- regex: .*,synopsis_clean(?:[\s:])+\"(.*)\",short_synopsis.*
with: $1
- regex: \\
with:
Performers:
Name: //div[@id="contributorImage"]//a[contains(@href,"/cast/")]/@title
Image:
selector: //div[contains(@class,'lc__negativex')]//img[contains(@class,'top-0 left-0')]/@src
postProcess:
- replace:
- regex: ^([^?]+)\?.*
with: $1?ar=16:9&fit=crop&crop=edges
Studio:
Name:
fixed: LustCinema
# Last Updated June 27, 2022