Add NeoCTC

This commit is contained in:
Techwolf 2019-07-05 23:47:53 -07:00 committed by Tobias Gruetzmacher
parent ab366f12d3
commit a3d3ea92db

View file

@ -48,6 +48,15 @@ class Nedroid(_WordPressScraper):
prevSearch = '//a[@rel="prev"]' prevSearch = '//a[@rel="prev"]'
class NeoCTC(_ParserScraper):
url = 'http://www.hirezfox.com/neoctc/'
stripUrl = url + 'd/%s.html'
firstStripUrl = stripUrl % '20071205'
imageSearch = '//img[contains(@src, "neoctc/comics")]'
prevSearch = '//a[./img[@alt="Previous Day"]]'
multipleImagesPerStrip = True
class NeoEarth(_BasicScraper): class NeoEarth(_BasicScraper):
url = 'http://www.neo-earth.com/NE/' url = 'http://www.neo-earth.com/NE/'
stripUrl = url + 'index.php?date=%s' stripUrl = url + 'index.php?date=%s'