from re import compile from ..helpers import _BasicScraper, indirectStarter class LasLindas(_BasicScraper): latestUrl = 'http://www.katbox.net/laslindas/' imageUrl = 'http://www.katbox.net/laslindas/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/' imageUrl = 'http://www.lastblood.net/main/%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/' imageUrl = 'http://rosalarian.com/lesbianpirates/?p=%s' imageSearch = compile(r'(/lesbianpirates/comics/.+?)"') prevSearch = compile(r'/(\?p=.+?)">«') help = 'Index format: n' class Lint(_BasicScraper): latestUrl = 'http://www.purnicellin.com/lint/' imageUrl = 'http://www.purnicellin.com/lint/%s' imageSearch = compile(r'') help = 'Index format: yyyy/mm/dd/num-name' class LookingForGroup(_BasicScraper): latestUrl = 'http://www.lfgcomic.com/page/latest' imageUrl = 'http://www.lfgcomic.com/page/%s' imageSearch = compile(r'  < ') help = 'Index format: n (unpadded)' class LittleGamers(_BasicScraper): latestUrl = 'http://www.little-gamers.com/' imageUrl = 'http://www.little-gamers.com/%s' imageSearch = compile(r'') prevSearch = compile(r'Previous') help = 'Index format: yyyymmdd'