# -*- 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 ..helpers import indirectStarter from ..util import tagre class LasLindas(_BasicScraper): latestUrl = 'http://laslindas.katbox.net/' stripUrl = latestUrl + 'archive/%s/' imageSearch = compile(tagre("img", "src", r'(http://laslindas\.katbox\.net/wp-content/webcomic/las-lindas/[^"]+)')) prevSearch = compile(tagre("a", "href", r'(http://laslindas\.katbox\.net/archive/[^"]+)', after="previous")) help = 'Index format: stripname' class Lint(_BasicScraper): latestUrl = 'http://www.purnicellin.com/lint/' stripUrl = latestUrl + '%s' imageSearch = compile(r'') help = 'Index format: yyyy/mm/dd/num-name' class LookingForGroup(_BasicScraper): latestUrl = 'http://www.lfgcomic.com/page/latest' stripUrl = 'http://www.lfgcomic.com/page/%s' imageSearch = compile(r'Previous') help = 'Index format: yyyymmdd'