# -*- coding: iso-8859-1 -*- # Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs # Copyright (C) 2012-2013 Bastian Kleineidam from re import compile, escape from ..scraper import _BasicScraper from ..helpers import bounceStarter from ..util import tagre class RadioactivePanda(_BasicScraper): url = 'http://www.radioactivepanda.com/' stripUrl = url + 'comic/%s' imageSearch = compile(r'next')) stripUrl = baseUrl + '%s/index.html' firstStripUrl = stripUrl % '1996-06-10' imageSearch = compile(r']*>') prevSearch = compile(r'previous') help = 'Index format: yyyy-mm-dd' @classmethod def namer(cls, imageUrl, pageUrl): return imageUrl.split('/')[-2] class RedString(_BasicScraper): description = u'A web comics about love and growing up. Art by Gina Biggs.' url = 'http://www.redstring.strawberrycomics.com/' stripUrl = url + 'index.php?id=%s' firstStripUrl = stripUrl % '434' imageSearch = compile(tagre("img", "src", r'(comics/[^"]+)')) prevSearch = compile(tagre("a", "href", r'(/index\.php\?id=\d+)', after="prev")) help = 'Index format: nnn' class Roza(_BasicScraper): url = 'http://www.junglestudio.com/roza/index.php' stripUrl = url + '?date=%s' firstStripUrl = stripUrl % '2007-05-01' imageSearch = compile(r'[^>].+?navtable_01.gif') help = 'Index format: yyyy-mm-dd' class Ruthe(_BasicScraper): url = 'http://ruthe.de/' stripUrl = url + 'index.php?pic=%s&sort=datum&order=ASC' firstStripUrl = stripUrl % '1' lang = 'de' imageSearch = compile(tagre("img", "src", r'(cartoons/strip_\d+[^"]+)')) prevSearch = compile(tagre("a", "href", r'(index\.php\?pic=[^"]+)', before="b_back")) help = 'Index format: number'