This commit is contained in:
Christoph Califice
2025-10-09 20:05:31 -03:00
parent ed22ef22bc
commit 0a5f88d75a
1442 changed files with 101562 additions and 0 deletions

View 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

View 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