Skip to content

Commit fc82603

Browse files
authored
Boynapped
1 parent bf3b098 commit fc82603

File tree

1 file changed

+59
-0
lines changed

1 file changed

+59
-0
lines changed

scrapers/BoyNapped/BoyNapped.yml

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
name: "BoyNapped"
2+
sceneByURL:
3+
- action: scrapeXPath
4+
url:
5+
- boynapped.com/ultimatekink/movie
6+
scraper: sceneScraper
7+
performerByURL:
8+
- action: scrapeXPath
9+
url:
10+
- boynapped.com/ultimatekink/model
11+
scraper: performerScraper
12+
13+
xPathScrapers:
14+
sceneScraper:
15+
common:
16+
$imageUrl: //video/@poster
17+
scene:
18+
Title: //h1[@class='title']
19+
Date:
20+
selector: //span[@class='pub-date']
21+
postProcess:
22+
- parseDate: Jan 2, 2006
23+
Code:
24+
selector: $imageUrl
25+
postProcess:
26+
- replace:
27+
- regex: .*thumbs/(boyn\d+)_.*
28+
with: $1
29+
Details:
30+
selector: //div[@class='description']/p/text()
31+
concat: " "
32+
Studio:
33+
Name:
34+
fixed: "BoyNapped"
35+
Tags:
36+
Name:
37+
selector: //div[@class='tags']/a
38+
Performers:
39+
Name: //div[contains(@class, 'model-wrap')]//h5
40+
URLs: //div[contains(@class, 'model-wrap')]//a/@href
41+
Image:
42+
selector: $imageUrl
43+
postProcess:
44+
- replace:
45+
- regex: ^//
46+
with: https://
47+
performerScraper:
48+
performer:
49+
Name: //h2[@class="model-name"]
50+
Gender:
51+
fixed: Male
52+
Image:
53+
selector: //span[@class="model-pic"]/img/@src
54+
postProcess:
55+
- replace:
56+
- regex: ^//
57+
with: https://
58+
59+
# Last Updated November 11, 2025

0 commit comments

Comments
 (0)