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,40 @@
name: Teeny Taboo
sceneByURL:
- action: scrapeXPath
url:
- teenytaboo.com
scraper: sceneScraper
xPathScrapers:
sceneScraper:
scene:
Title: //h1[@class="customhcolor"]
Details: //h2[@class="customhcolor2"]
Date:
selector: //span[@class="date"]
postProcess:
- replace:
- regex: (\w+) (0?[1-9]|[12][0-9]|3[01])(?:st|nd|th) (\d{4})
with: $1 $2, $3
- parseDate: January 2, 2006
Image:
selector: //center/img/@src
postProcess:
- replace:
- regex: ^
with: "https://teenytaboo.com/"
Studio:
Name:
fixed: Teeny Taboo
Tags:
Name:
selector: //h4[@class="customhcolor" and not(./span)]
split: ","
Performers:
Name:
selector: //h3[@class="customhcolor"]
split: ","
postProcess:
- replace:
- regex: \x{00a0}
with: ""
# Last Updated June 11, 2023