mirror of
https://github.com/stashapp/CommunityScrapers.git
synced 2025-12-11 03:08:29 -06:00
Add Scene & Gallery scraper for AbbiSecraa (#1913)
* Create AbbiSecraa.yml * Update SCRAPERS-LIST.md
This commit is contained in:
parent
db01056936
commit
b90aaeea13
@ -32,6 +32,7 @@ Supported Site|Scraper| S | G | M | P |Needs|Contents
|
||||
80gays.com|CJXXX.yml|:heavy_check_mark:|:x:|:x:|:x:|-|Gay
|
||||
8thstreetlatinas.com|RealityKings/RealityKings.yml|:heavy_check_mark:|:heavy_check_mark:|:heavy_check_mark:|:heavy_check_mark:|Python|-
|
||||
abbiemaley.com|ThirdRockEnt.yml|:heavy_check_mark:|:x:|:x:|:x:|-|-
|
||||
abbisecraa.com|AbbiSecraa.yml|:heavy_check_mark:|:heavy_check_mark:|:x:|:x:|-|-
|
||||
abbywinters.com|AbbyWinters.yml|:heavy_check_mark:|:x:|:x:|:x:|-|-
|
||||
abdlgirl.com|Shopmaker.yml|:heavy_check_mark:|:x:|:x:|:x:|-|-
|
||||
abuseme.com|AbuseMe.yml|:heavy_check_mark:|:x:|:x:|:x:|-|-
|
||||
|
||||
95
scrapers/AbbiSecraa/AbbiSecraa.yml
Normal file
95
scrapers/AbbiSecraa/AbbiSecraa.yml
Normal file
@ -0,0 +1,95 @@
|
||||
name: AbbiSecraa
|
||||
sceneByURL:
|
||||
- action: scrapeXPath
|
||||
url:
|
||||
- abbisecraa.com/blog/movie/
|
||||
scraper: sceneScraper
|
||||
galleryByURL:
|
||||
- action: scrapeXPath
|
||||
url:
|
||||
- abbisecraa.com/blog/photos/
|
||||
scraper: galleryScraper
|
||||
xPathScrapers:
|
||||
sceneScraper:
|
||||
common:
|
||||
$title: //header/h1[@class="title"]/text()
|
||||
scene:
|
||||
Title:
|
||||
selector: $title
|
||||
postProcess:
|
||||
- replace:
|
||||
- regex: ' - movie'
|
||||
with: ''
|
||||
Details:
|
||||
selector: //div[contains(@class, "element element-textarea first")]//p/node()
|
||||
concat: ' '
|
||||
Date:
|
||||
selector: //header/p[@class="meta"]/text()
|
||||
postProcess:
|
||||
- replace:
|
||||
- regex: .*[,]\s|\.
|
||||
with: ''
|
||||
- parseDate: 02 January 2006
|
||||
Image:
|
||||
selector: //div[contains(@class, "element element-image first last")]//img/@src
|
||||
Studio:
|
||||
Name:
|
||||
fixed: "Abbi Secraa"
|
||||
Tags:
|
||||
Name:
|
||||
selector: //meta[@name="keywords"]/@content
|
||||
split: ","
|
||||
Performers:
|
||||
Name:
|
||||
fixed: "Abbi Secraa"
|
||||
Code:
|
||||
selector: $title
|
||||
postProcess:
|
||||
- replace:
|
||||
- regex: '- '
|
||||
with: ''
|
||||
- replace:
|
||||
- regex: ' '
|
||||
with: '-'
|
||||
|
||||
galleryScraper:
|
||||
common:
|
||||
$title: //header/h1[@class="title"]/text()
|
||||
gallery:
|
||||
Title:
|
||||
selector: $title
|
||||
postProcess:
|
||||
- replace:
|
||||
- regex: ' - photos'
|
||||
with: ''
|
||||
Details:
|
||||
selector: //div[contains(@class, "element element-textarea first")]//p/node()
|
||||
concat: ' '
|
||||
Date:
|
||||
selector: //header/p[@class="meta"]/text()
|
||||
postProcess:
|
||||
- replace:
|
||||
- regex: .*[,]\s|\.
|
||||
with: ''
|
||||
- parseDate: 02 January 2006
|
||||
Studio:
|
||||
Name:
|
||||
fixed: "Abbi Secraa"
|
||||
Tags:
|
||||
Name:
|
||||
selector: //meta[@name="keywords"]/@content
|
||||
split: ","
|
||||
Performers:
|
||||
Name:
|
||||
fixed: "Abbi Secraa"
|
||||
Code:
|
||||
selector: $title
|
||||
postProcess:
|
||||
- replace:
|
||||
- regex: '- '
|
||||
with: ''
|
||||
- replace:
|
||||
- regex: ' '
|
||||
with: '-'
|
||||
|
||||
# Last Updated June 09, 2024
|
||||
Loading…
x
Reference in New Issue
Block a user