dosage/dosagelib/plugins/q.py

28 lines
994 B
Python
Raw Normal View History

# -*- coding: iso-8859-1 -*-
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
2014-01-05 15:50:57 +00:00
# Copyright (C) 2012-2014 Bastian Kleineidam
2012-06-20 19:58:13 +00:00
from re import compile, escape
2012-10-11 10:03:12 +00:00
from ..scraper import _BasicScraper
2012-11-21 20:57:26 +00:00
from ..util import tagre
2012-06-20 19:58:13 +00:00
class QuestionableContent(_BasicScraper):
url = 'http://www.questionablecontent.net/'
stripUrl = url + 'view.php?comic=%s'
2013-04-10 21:57:09 +00:00
firstStripUrl = stripUrl % '1'
imageSearch = compile(tagre("img", "src", r'([^"]+/comics/[^"]+)'))
2012-12-07 23:45:18 +00:00
prevSearch = compile(tagre("a", "href", r'(view\.php\?comic=\d+)') + 'Previous')
2012-06-20 19:58:13 +00:00
help = 'Index format: n (unpadded)'
class Qwantz(_BasicScraper):
2013-04-13 18:58:00 +00:00
baseUrl = 'http://www.qwantz.com/'
url = baseUrl + 'index.php'
rurl = escape(baseUrl)
stripUrl = url + '?comic=%s'
2013-04-10 21:57:09 +00:00
firstStripUrl = stripUrl % '1'
2013-04-11 16:27:43 +00:00
imageSearch = compile(tagre("img", "src", r'(%scomics/[^"]+)' % rurl))
prevSearch = compile(tagre("a", "href", r'(%sindex\.php\?comic=\d+)' % rurl, before="prev"))
2012-06-20 19:58:13 +00:00
help = 'Index format: n'