25 lines
956 B
Python
25 lines
956 B
Python
# -*- coding: iso-8859-1 -*-
|
|
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
|
|
# Copyright (C) 2012 Bastian Kleineidam
|
|
|
|
from ..scraper import _BasicScraper
|
|
from ..util import tagre
|
|
|
|
|
|
class YAFGC(_BasicScraper):
|
|
latestUrl = 'http://yafgc.net/'
|
|
stripUrl = latestUrl + '?id=%s'
|
|
imageSearch = compile(tagre("img", "src", r'(http://yafgc\.net/img/comic/\d+\.jpg)'))
|
|
prevSearch = compile(tagre("a", "href", r'(http://yafgc\.net/\?id=\d+)') +
|
|
tagre("img", "src", r'/img/navbar/go_to_previous\.gif'))
|
|
help = 'Index format: n'
|
|
|
|
|
|
class YouSayItFirst(_BasicScraper):
|
|
latestUrl = 'http://www.yousayitfirst.com/'
|
|
stripUrl = latestUrl + 'comics/index.php?date=%s'
|
|
imageSearch = compile(tagre("img", "src", r'(http://www\.yousayitfirst\.com/comics/[^"]+)'))
|
|
prevSearch = compile(tagre("a", "href", r'(http://www\.yousayitfirst\.com/comics/index\.php\?date=\d+)') + "Previous")
|
|
help = 'Index format: yyyymmdd'
|
|
|
|
|