stash
This commit is contained in:
@@ -0,0 +1,73 @@
|
||||
name: AdultDvdMarketPlace
|
||||
|
||||
movieByURL:
|
||||
- action: scrapeXPath
|
||||
url:
|
||||
- adultdvdmarketplace.com/xcart/adult_dvd/dvd_view.php?adult_dvd_id=
|
||||
- adultdvdmarketplace.com/dvd_view
|
||||
scraper: movieScraper
|
||||
|
||||
sceneByName:
|
||||
action: scrapeXPath
|
||||
queryURL: https://www.adultdvdmarketplace.com/xcart/adult_dvd/dvd_search.php?type=title&search={}
|
||||
scraper: sceneSearch
|
||||
|
||||
sceneByURL:
|
||||
- action: scrapeXPath
|
||||
url:
|
||||
- adultdvdmarketplace.com/dvd_view
|
||||
scraper: sceneScraper
|
||||
|
||||
sceneByQueryFragment:
|
||||
action: scrapeXPath
|
||||
queryURL: "{url}"
|
||||
scraper: sceneScraper
|
||||
|
||||
xPathScrapers:
|
||||
movieScraper:
|
||||
movie:
|
||||
Name: //meta[@property="og:title"]/@content
|
||||
Director: //span[contains(text(),"Director")]/following-sibling::a/text()
|
||||
Date:
|
||||
selector: //span[contains(text(),"Released")]/following-sibling::text()
|
||||
postProcess:
|
||||
- parseDate: 01/2006
|
||||
Synopsis: //h3[contains(text(), "Description")]/following-sibling::p
|
||||
Studio:
|
||||
Name: //span[@itemprop="brand"]/text()
|
||||
FrontImage: //strong[contains(text(),"Large Front")]/parent::a/@href
|
||||
BackImage: //strong[contains(text(),"Large Back")]/parent::a/@href
|
||||
|
||||
sceneSearch:
|
||||
common:
|
||||
$selection: //div[contains(concat(' ',normalize-space(@class),' '),' product-col ')]
|
||||
scene:
|
||||
Title: $selection//h4/a
|
||||
URL:
|
||||
selector: $selection//h4/a/@href
|
||||
postProcess:
|
||||
- replace:
|
||||
- regex: ^
|
||||
with: https://www.adultdvdmarketplace.com
|
||||
Image: $selection//a/img/@src
|
||||
|
||||
sceneScraper:
|
||||
scene:
|
||||
Title: //meta[@property="og:title"]/@content
|
||||
Details: //h3[contains(text(), "Description")]/following-sibling::p
|
||||
Date:
|
||||
selector: //span[contains(text(),"Released")]/following-sibling::text()
|
||||
postProcess:
|
||||
- parseDate: 01/2006
|
||||
Image: //strong[contains(text(),"Large Front")]/parent::a/@href
|
||||
Studio:
|
||||
Name: //span[@itemprop="brand"]/text()
|
||||
Movies:
|
||||
Name: //meta[@property="og:title"]/@content
|
||||
URL: //meta[@property="og:url"]/@content
|
||||
Performers:
|
||||
Name: //h3[text()="Cast"]/following-sibling::a
|
||||
Tags:
|
||||
Name: //span[text()="Category:"]/following-sibling::a
|
||||
|
||||
# Last Updated September 07, 2020
|
||||
9
stash/config/scrapers/community/AdultDvdMarketPlace/manifest
Executable file
9
stash/config/scrapers/community/AdultDvdMarketPlace/manifest
Executable file
@@ -0,0 +1,9 @@
|
||||
id: AdultDvdMarketPlace
|
||||
name: AdultDvdMarketPlace
|
||||
metadata: {}
|
||||
version: caf2433
|
||||
date: "2023-08-04 00:38:00"
|
||||
requires: []
|
||||
source_repository: https://stashapp.github.io/CommunityScrapers/stable/index.yml
|
||||
files:
|
||||
- AdultDvdMarketPlace.yml
|
||||
Reference in New Issue
Block a user