# -*- coding: iso-8859-1 -*- # Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs # Copyright (C) 2012-2013 Bastian Kleineidam from re import compile from ..scraper import _BasicScraper from ..helpers import indirectStarter from ..util import tagre class Galaxion(_BasicScraper): url = 'http://galaxioncomics.com/' stripUrl = url + '%s/' imageSearch = compile(tagre("img", "src", r'(http://galaxioncomics\.com/comics/[^"]+)')) prevSearch = compile(tagre("a", "href", r'(http://galaxioncomics\.com/[^"]+)', after="prev")) help = 'Index format: n-comic/book-n/chapter-n/title-nnn' class Garanos(_BasicScraper): url = 'http://garanos.alexheberling.com/pages/page-1/' starter = indirectStarter(url, compile(tagre("a", "href", r'(http://garanos\.alexheberling\.com/pages/[^"]+)', after="navi-last"))) stripUrl = 'http://garanos.alexheberling.com/pages/page-%s' imageSearch = compile(tagre("img", "src", r'(http://garanos\.alexheberling\.com/comics/[^"]+)')) prevSearch = compile(tagre("a", "href", r'(http://garanos\.alexheberling\.com/pages/[^"]+)', after="prev")) help = 'Index format: n (unpadded)' class GastroPhobia(_BasicScraper): url = 'http://www.gastrophobia.com/' stripUrl = url + 'index.php?date=%s' imageSearch = compile(r']*>(?!
)') prevSearch = compile(r'« Previous') help = 'Index format: nnn' class GirlGenius(_BasicScraper): url = 'http://girlgeniusonline.com/comic.php' stripUrl = url + '?date=%s' imageSearch = compile(r"(/ggmain/strips/.+?)'") prevSearch = compile(r" ') help = 'Index format: yymmdd' class GoneWithTheBlastwave(_BasicScraper): url = 'http://www.blastwave-comic.com/index.php?p=comic&nro=1' starter = indirectStarter(url, compile(r'href="(index.php\?p=comic&nro=\d+)">]+/images/(?:nav_02|previous_day)\.gif") help='Index format: yyyymmdd' class GrrlPower(_BasicScraper): url = 'http://www.grrlpowercomic.com/' stripUrl = url + 'archives/%s' imageSearch = compile(tagre("img", "src", r'(http://www\.grrlpowercomic\.com/comics/[^"]+)')) prevSearch = compile(tagre("a", "href", r'(http://www\.grrlpowercomic\.com/archives/\d+)', after="navi-prev")) help = 'Index format: number' class GunnerkrigCourt(_BasicScraper): url = 'http://www.gunnerkrigg.com/' stripUrl = url + '?p=%s' imageSearch = compile(tagre("img", "src", r'(/comics/[^"]+)')) prevSearch = compile(tagre("a", "href", r'(\?p=\d+)') + tagre("img", "src", "http://www\.gunnerkrigg\.com/images/prev_a\.jpg")) help = 'Index format: number' class Gunshow(_BasicScraper): url = 'http://gunshowcomic.com/' stripUrl = url + '%s' imageSearch = compile(tagre("img", "src", r'(http://gunshowcomic\.com/comics/[^"]+)')) multipleImagesPerStrip = True prevSearch = compile(tagre("a", "href", r'([^"]+)') + tagre("img", "src", r'[^"]*menu/small/previous\.gif')) help = 'Index format: n' class GUComics(_BasicScraper): url = 'http://www.gucomics.com/comic/' stripUrl = url + '?cdate=%s' imageSearch = compile(tagre("img", "src", r'(/comics/\d{4}/gu_[^"]+)')) prevSearch = compile(tagre("a", "href", r'(/comic/\?cdate=\d+)') + tagre("img", "src", r'/images/nav/prev\.png')) help = 'Index format: yyyymmdd'