stash
This commit is contained in:
60
stash/config/scrapers/community/AngelaWhite/AngelaWhite.yml
Normal file
60
stash/config/scrapers/community/AngelaWhite/AngelaWhite.yml
Normal file
@@ -0,0 +1,60 @@
|
||||
name: "AngelaWhite"
|
||||
sceneByURL:
|
||||
- action: scrapeXPath
|
||||
url:
|
||||
- angelawhite.com/tour/trailers/
|
||||
scraper: sceneScraper
|
||||
xPathScrapers:
|
||||
sceneScraper:
|
||||
common:
|
||||
$info: //div[@class="video-details-inner"]
|
||||
$search: //div[@class="video-details-inner"]/h2/text()
|
||||
scene:
|
||||
Title: $info/h2/text()
|
||||
Date:
|
||||
selector: $info/span/text()
|
||||
postProcess:
|
||||
- parseDate: Jan 2, 2006
|
||||
Details: $info//p/text()
|
||||
Performers:
|
||||
Name:
|
||||
selector: $search
|
||||
postProcess:
|
||||
- replace:
|
||||
- regex: (^\d+)\s.+
|
||||
with: "http://angelawhite.com/tour/search?query=$1"
|
||||
- subScraper:
|
||||
selector: //div[@class="models-list"]/a/text()
|
||||
concat: ","
|
||||
split: ","
|
||||
Tags:
|
||||
Name:
|
||||
selector: $search
|
||||
postProcess:
|
||||
- replace:
|
||||
- regex: (^\d+)\s.+
|
||||
with: "http://angelawhite.com/tour/search?query=$1"
|
||||
- subScraper:
|
||||
selector: //div[@class="categories-list"]/a/text()
|
||||
concat: ","
|
||||
split: ","
|
||||
Image:
|
||||
selector: $search
|
||||
postProcess:
|
||||
- replace:
|
||||
- regex: \s
|
||||
with: "+"
|
||||
- regex: ^
|
||||
with: "http://angelawhite.com/tour/search?query=\""
|
||||
- regex: $
|
||||
with: "\""
|
||||
- subScraper:
|
||||
selector: //img/@src0
|
||||
postProcess:
|
||||
- replace:
|
||||
- regex: ^
|
||||
with: http://angelawhite.com
|
||||
Studio:
|
||||
Name: //a[@class="logo-aw"]/@title
|
||||
|
||||
# Last Updated November 08, 2020
|
||||
9
stash/config/scrapers/community/AngelaWhite/manifest
Executable file
9
stash/config/scrapers/community/AngelaWhite/manifest
Executable file
@@ -0,0 +1,9 @@
|
||||
id: AngelaWhite
|
||||
name: AngelaWhite
|
||||
metadata: {}
|
||||
version: 66d4760
|
||||
date: "2021-07-18 15:48:20"
|
||||
requires: []
|
||||
source_repository: https://stashapp.github.io/CommunityScrapers/stable/index.yml
|
||||
files:
|
||||
- AngelaWhite.yml
|
||||
Reference in New Issue
Block a user