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,58 @@
name: MeanBitches
performerByURL:
- action: scrapeXPath
url:
- meanbitches.com/tour/models/
scraper: performerScraper
sceneByURL:
- action: scrapeXPath
url:
- meanbitches.com/tour/updates/
scraper: sceneScraper
xPathScrapers:
performerScraper:
performer:
Name: //div[contains(@class,'title_bar') and not(contains(text(),'Updates'))]/text()
Image:
selector: //tr/td/img[@class="thumbs"]/@src
postProcess:
- replace:
- regex: ^/
with: http://meanbitches.com/
sceneScraper:
common:
$titlebar: //table[@id="episode_title"]/tbody/tr/
scene:
Title: $titlebar/td[contains(comment(),"Title")]/text()
Details: //div[@class="episode_description"]/text()
Studio:
Name:
fixed: Mean Bitches
URL:
fixed: https://www.meanbitches.com/
Performers:
Name:
selector: $titlebar/td[contains(comment(),"Featured Models")]/text()
postProcess:
- replace:
- regex: 'Featuring:\s*(.*)'
with: $1
- regex: '\xa0' # non printable char after the comma
with: ""
split: ","
Image:
selector: //td[@class="episode_thumbs"][@align="center"]//img/@src
postProcess:
- replace:
- regex: ^/
with: http://meanbitches.com/
Date:
selector: $titlebar/td[contains(text(),"Added")]/text()
postProcess:
- replace:
- regex: "Added(.*)"
with: $1
- parseDate: 01/02/2006
# Last Updated December 26, 2022

View File

@@ -0,0 +1,9 @@
id: MeanBitches
name: MeanBitches
metadata: {}
version: f25585b
date: "2023-01-01 16:18:29"
requires: []
source_repository: https://stashapp.github.io/CommunityScrapers/stable/index.yml
files:
- MeanBitches.yml