Add director field to DorcelClub scene scraper (#1296)

This commit is contained in:
MortonBridges 2023-03-28 19:25:39 -04:00 committed by GitHub
parent c511895a1a
commit cee777e352
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,8 +33,14 @@ xPathScrapers:
selector: //div[@class="left"]/span[@class="movie"]/a/@href
postProcess:
- replace:
- regex: (.*)
with: https://dorcelclub.com$1
- regex: ^/
with: https://dorcelclub.com/
Director:
selector: //div[@class="left"]/span[@class='director']/text()
postProcess:
- replace:
- regex: Director\s*:\s*(.*)
with: $1
movieScraper:
movie:
@ -60,7 +66,7 @@ xPathScrapers:
selector: //span[@class='director']/text()
postProcess:
- replace:
- regex: Director\s:\s(.*)
- regex: Director\s*:\s*(.*)
with: $1
FrontImage:
selector: //img[contains(@class, "cover")]/@data-src
@ -69,4 +75,4 @@ xPathScrapers:
- regex: ([^\s]*)\s1x
with: $1
Synopsis: //span[@class="full"]/p|/div[@class="content-text"]/p
# Last Updated June 27, 2022
# Last Updated March 22, 2023