29 lines
889 B
YAML
29 lines
889 B
YAML
name: Eporner
|
|
sceneByURL:
|
|
- action: scrapeXPath
|
|
url:
|
|
- www.eporner.com
|
|
scraper: sceneScraper
|
|
xPathScrapers:
|
|
sceneScraper:
|
|
scene:
|
|
Title:
|
|
selector: //*[@id="video-info"]/h1/text()
|
|
Date:
|
|
selector: //script[contains(.,"uploadDate")]/text()
|
|
postProcess:
|
|
- replace:
|
|
- regex: .*uploadDate":\s"(\d{4}-\d{2}-\d{2})T.*
|
|
with: $1
|
|
- parseDate: 2006-01-02
|
|
Performers:
|
|
Name: //*[@id="video-info-tags"]/ul//li[@class='vit-pornstar starw']/a/text()
|
|
Tags:
|
|
Name: //*[@id="video-info-tags"]/ul//li[@class='vit-category' or @class='vit-tag']/a/text()
|
|
Studio:
|
|
Name: //*[@id="video-info-tags"]/ul/li[@class='vit-uploader']/a/text()
|
|
Image: //meta[@property="og:image"]/@content
|
|
URL: //meta[@property="og:url"]/@content
|
|
|
|
# Last Updated August 14, 2023
|