# -*- coding: iso-8859-1 -*- # Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs from re import compile from ..scraper import _BasicScraper from ..helpers import indirectStarter class LasLindas(_BasicScraper): latestUrl = 'http://www.katbox.net/laslindas/' stripUrl = latestUrl + 'index.php?strip_id=%s' imageSearch = compile(r'"(istrip_files/strips/.+?)"') prevSearch = compile(r'<[^>]+?alt="Back"') help = 'Index format: n (unpadded)' class LastBlood(_BasicScraper): latestUrl = 'http://www.lastblood.net/main/' stripUrl = latestUrl + '%s' imageSearch = compile(r'(/comicfolder/.+?)" alt') prevSearch = compile(r'Previous Comic:
«
') help = 'Index format: yyyy/mm/dd/(page number and name)' class LesbianPiratesFromOuterSpace(_BasicScraper): latestUrl = 'http://rosalarian.com/lesbianpirates/' stripUrl = latestUrl + '?p=%s' imageSearch = compile(r'(/lesbianpirates/comics/.+?)"') prevSearch = compile(r'/(\?p=.+?)">«') help = 'Index format: n' 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'  < ') help = 'Index format: n (unpadded)' class LittleGamers(_BasicScraper): latestUrl = 'http://www.little-gamers.com/' stripUrl = latestUrl + '%s' imageSearch = compile(r'') prevSearch = compile(r'Previous') help = 'Index format: yyyymmdd'