# -*- coding: iso-8859-1 -*- # Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs # Copyright (C) 2012 Bastian Kleineidam from re import compile from ..scraper import _BasicScraper from ..util import tagre class IDreamOfAJeanieBottle(_BasicScraper): latestUrl = 'http://jeaniebottle.com/' stripUrl = latestUrl + '?p=%s' imageSearch = compile(r'(/comics/.+?)"') prevSearch = compile(tagre("a", "href", r'(http://jeaniebottle\.com/\?p=\d+)', after="prev")) help = 'Index format: n (unpadded)' class IrregularWebcomic(_BasicScraper): latestUrl = 'http://www.irregularwebcomic.net/' stripUrl = latestUrl + '%s.html' imageSearch = compile(r'') prevSearch = compile(r'Previous ') help = 'Index format: nnn' class InsideOut(_BasicScraper): latestUrl = 'http://www.insideoutcomic.com/' stripUrl = latestUrl + 'html/%s.html' imageSearch = compile(r'Picture12LYR.+?C="(.+?/assets/images/.+?)"') prevSearch = compile(r'Picture7LYR.+?F="(.+?/html/.+?)"') help = 'Index format: n_comic_name' class ItsWalky(_BasicScraper): latestUrl = 'http://www.itswalky.com/' stripUrl = latestUrl + 'd/%s.html' imageSearch = compile(tagre("img", "src", r'(/comic[s|/][^"]+)')) prevSearch = compile(tagre("a", "href", r'[^"]*(/d/\d+\.s?html)')+r"[^>]+/images/(?:nav_02|previous_day)\.gif") help = 'Index format: yyyymmdd'