25 lines
941 B
Python
25 lines
941 B
Python
# -*- coding: iso-8859-1 -*-
|
|
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
|
|
# Copyright (C) 2012-2013 Bastian Kleineidam
|
|
|
|
from re import compile, escape
|
|
from ..scraper import _BasicScraper
|
|
from ..util import tagre
|
|
|
|
|
|
class QuestionableContent(_BasicScraper):
|
|
url = 'http://www.questionablecontent.net/'
|
|
stripUrl = url + 'view.php?comic=%s'
|
|
imageSearch = compile(tagre("img", "src", r'([^"]+/comics/[^"]+)', before="strip"))
|
|
prevSearch = compile(tagre("a", "href", r'(view\.php\?comic=\d+)') + 'Previous')
|
|
help = 'Index format: n (unpadded)'
|
|
|
|
|
|
class Qwantz(_BasicScraper):
|
|
baseurl = 'http://www.qwantz.com/'
|
|
url = baseurl + 'index.php'
|
|
rurl = escape(baseurl)
|
|
stripUrl = url + '?comic=%s'
|
|
imageSearch = compile(tagre("img", "src", r'(%s/comics/[^"]+)' % rurl))
|
|
prevSearch = compile(tagre("a", "href", r'(%sindex\.php\?comic=\d+)' % rurl, before="prev"))
|
|
help = 'Index format: n'
|