forked from stashapp/CommunityScrapers
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New URL scene and performer scraper for CDGirls network (stashapp#1823)
* Create CDGirls.yml New Scene and Performer scraper for CD Girls and their network subsites: - First Timers - Just Barely 18 - Luxury Lesbians - Fucked By A Machine - Sybian Orgasms - VR Body Shots * Update SCRAPERS-LIST.md Added cdgirls.com to scrapers list.
- Loading branch information
1 parent
302fe1a
commit afc09db
Showing
2 changed files
with
71 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
name: CDGirls | ||
sceneByURL: | ||
- action: scrapeXPath | ||
url: | ||
- cdgirls.com | ||
scraper: sceneScraper | ||
|
||
performerByURL: | ||
- action: scrapeXPath | ||
url: | ||
- cdgirls.com | ||
scraper: performeScraper | ||
|
||
xPathScrapers: | ||
sceneScraper: | ||
scene: | ||
Title: //meta[@property='og:title']/@content | ||
Date: | ||
selector: //span[contains(.,'Added')]/following-sibling::span | ||
postProcess: | ||
- parseDate: 2-1-2006 | ||
Details: | ||
selector: //div[@class='panel-content']/p | ||
concat: ' ' | ||
Performers: | ||
Name: //div[@class='model_name'] | ||
Image: //div[@class='model_img']/img/@src | ||
Image: | ||
selector: //script[contains(.,'image:')] | ||
postProcess: | ||
- replace: | ||
- regex: .+?image:.+?'([^']+).+ | ||
with: $1 | ||
Tags: | ||
Name: | ||
selector: //div[@class='video-footer']/strong[contains(.,'Tags')]/following-sibling::p/a | ||
Studio: | ||
Name: | ||
# Some scenes are part of multiple subsites. This grabs the first that's listed. | ||
selector: //div[@class='video-footer']/strong[contains(.,'CDGirls WebSite')]/following-sibling::p/a | ||
postProcess: | ||
- map: | ||
Amateur: First Timers | ||
Barely18: Just Barely 18 | ||
Lesbian: Luxury Lesbians | ||
Sexmachines: Fucked By A Machine | ||
Sybian: Sybian Orgasms | ||
Vrbs: VR Body Shots | ||
|
||
performeScraper: | ||
performer: | ||
Name: //aside//h3 | ||
Height: | ||
selector: //li[contains(.,'Height')]//strong | ||
postProcess: | ||
- replace: | ||
- regex: '^' | ||
with: '0.' | ||
- feetToCm: true | ||
Weight: | ||
selector: //li[contains(.,'Weight')]//strong | ||
postProcess: | ||
- lbToKg: true | ||
EyeColor: //li[contains(.,'Eye Color')]//strong | ||
HairColor: //li[contains(.,'Hair Color')]//strong | ||
Details: //ul[@class='list-unstyled']/li[1] | ||
Image: //div[@class='model_img_lg']/img/@src | ||
Disambiguation: | ||
fixed: CD Girls | ||
# Last Updated May 08, 2024 |