From a3d3ea92dbd772678f3d731e13f3677e6ba7e05b Mon Sep 17 00:00:00 2001 From: Techwolf Date: Fri, 5 Jul 2019 23:47:53 -0700 Subject: [PATCH] Add NeoCTC --- dosagelib/plugins/n.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/dosagelib/plugins/n.py b/dosagelib/plugins/n.py index 2009ccee2..22368f228 100644 --- a/dosagelib/plugins/n.py +++ b/dosagelib/plugins/n.py @@ -48,6 +48,15 @@ class Nedroid(_WordPressScraper): 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): url = 'http://www.neo-earth.com/NE/' stripUrl = url + 'index.php?date=%s'