stash
This commit is contained in:
72
stash/config/scrapers/community/TimTales/TimTales.yml
Normal file
72
stash/config/scrapers/community/TimTales/TimTales.yml
Normal file
@@ -0,0 +1,72 @@
|
||||
name: "TimTales"
|
||||
sceneByURL:
|
||||
- action: scrapeXPath
|
||||
url:
|
||||
- timtales.com/videos/
|
||||
scraper: sceneScraper
|
||||
|
||||
performerByURL:
|
||||
- action: scrapeXPath
|
||||
url:
|
||||
- https://www.timtales.com/the-men/
|
||||
scraper: performerScraper
|
||||
|
||||
xPathScrapers:
|
||||
sceneScraper:
|
||||
common:
|
||||
$info: //div[@class="text"]
|
||||
scene:
|
||||
Title: $info/h1/text()
|
||||
Date:
|
||||
selector: $info/p[@class="date"]/text()
|
||||
postProcess:
|
||||
- replace:
|
||||
- regex: \s–\s.*$
|
||||
with:
|
||||
- parseDate: January 02, 2006
|
||||
Details:
|
||||
selector: $info/p[@class="bodytext"]/text()
|
||||
concat: "\n\n"
|
||||
Tags:
|
||||
Name: $info/p[@class="categories" and contains(text(), "Categories:")]/a/text()
|
||||
Performers:
|
||||
Name:
|
||||
selector: $info/p[@class="categories" and contains(text(), "Men:")]
|
||||
postProcess:
|
||||
- replace:
|
||||
- regex: "Men:"
|
||||
with:
|
||||
- regex: (,)\s+
|
||||
with: $1
|
||||
split: ","
|
||||
Image:
|
||||
selector: //div[@class="video player no-volume play-button"]/@style
|
||||
postProcess:
|
||||
- replace:
|
||||
- regex: .+'(.+)'.+
|
||||
with: $1
|
||||
Studio:
|
||||
Name:
|
||||
fixed: Timtales
|
||||
|
||||
performerScraper:
|
||||
performer:
|
||||
Name: //div[contains(@class, "top")]/h1/text()
|
||||
Gender:
|
||||
fixed: Male
|
||||
Country: //span[text()="Country of birth:"]/following-sibling::text()
|
||||
Height:
|
||||
selector: //span[text()="Height:"]/following-sibling::text()
|
||||
postProcess:
|
||||
- replace:
|
||||
- regex: ^.*\[(.*) cm\].*$
|
||||
with: $1
|
||||
Measurements:
|
||||
selector: //span[text()="Cock:"]/following-sibling::text()
|
||||
postProcess:
|
||||
- replace:
|
||||
- regex: ^.*\[(.*) cm\].*$
|
||||
with: $1
|
||||
Image: //div[@class="model-details"]/img/@src
|
||||
|
||||
# Last Updated November 08, 2020
|
||||
9
stash/config/scrapers/community/TimTales/manifest
Executable file
9
stash/config/scrapers/community/TimTales/manifest
Executable file
@@ -0,0 +1,9 @@
|
||||
id: TimTales
|
||||
name: TimTales
|
||||
metadata: {}
|
||||
version: 66d4760
|
||||
date: "2021-07-18 15:48:20"
|
||||
requires: []
|
||||
source_repository: https://stashapp.github.io/CommunityScrapers/stable/index.yml
|
||||
files:
|
||||
- TimTales.yml
|
||||
Reference in New Issue
Block a user