32 lines
765 B
YAML
32 lines
765 B
YAML
name: "hucows"
|
|
sceneByURL:
|
|
- action: scrapeXPath
|
|
url:
|
|
- hucows.com
|
|
scraper: sceneScraper
|
|
xPathScrapers:
|
|
sceneScraper:
|
|
scene:
|
|
Title: //h1[@class="entry-title"]
|
|
Details:
|
|
selector: //div[@class="entry-content"]/p
|
|
concat: " "
|
|
Date:
|
|
selector: //div[@itemprop="datePublished"]//text()
|
|
concat: " "
|
|
postProcess:
|
|
- replace:
|
|
- regex: ^\s+
|
|
with:
|
|
- parseDate: 2 Jan 2006
|
|
Image: //div[contains(@class,"post-single-img")]//img/@src
|
|
Studio:
|
|
Name:
|
|
fixed: Hucows
|
|
Tags:
|
|
Name: //a[@rel="category tag"]/text()
|
|
Performers:
|
|
Name: //span[@class="posttags"]/a/text()
|
|
|
|
# Last Updated November 08, 2020
|