27 lines
719 B
YAML
27 lines
719 B
YAML
name: "BradMontana"
|
|
sceneByURL:
|
|
- action: scrapeXPath
|
|
url:
|
|
- bradmontana.com/videos/
|
|
scraper: sceneScraper
|
|
|
|
xPathScrapers:
|
|
sceneScraper:
|
|
scene:
|
|
Title: //div[@class="title tit"]/h1/text()
|
|
Details: //div[@class="descript desc"]/p//text()
|
|
Date:
|
|
selector: //script[@type="application/ld+json"]
|
|
postProcess:
|
|
- replace:
|
|
- regex: .+(?:"datePublished":")([^T]+).+
|
|
with: $1
|
|
- parseDate: 2006-01-02
|
|
Performers:
|
|
Name: //div[@class="elenco elen"]/a/text()
|
|
Studio:
|
|
Name: //meta[@property="og:site_name"]/@content
|
|
Image: //meta[@property="og:image"]/@content
|
|
|
|
# Last Updated Januray 16, 2024
|