dosage/dosagelib/plugins/q.py

47 lines
1.7 KiB
Python
Raw Normal View History

2017-05-14 22:54:02 +00:00
# -*- coding: utf-8 -*-
2016-10-28 22:21:41 +00:00
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
2014-01-05 15:50:57 +00:00
# Copyright (C) 2012-2014 Bastian Kleineidam
2017-05-14 22:54:02 +00:00
# Copyright (C) 2015-2017 Tobias Gruetzmacher
from __future__ import absolute_import, division, print_function
2012-06-20 19:58:13 +00:00
from re import compile, escape
2019-06-23 21:36:33 +00:00
from ..scraper import _BasicScraper, _ParserScraper
2012-11-21 20:57:26 +00:00
from ..util import tagre
2012-06-20 19:58:13 +00:00
2019-06-23 21:36:33 +00:00
class QuantumVibe(_ParserScraper):
url = 'https://www.quantumvibe.com/'
stripUrl = url + 'strip?page=%s'
firstStripUrl = stripUrl % '1'
imageSearch = '//img[contains(@src, "disppageV3?story=qv")]'
prevSearch = '//a[./img[contains(@src, "nav/prevstrip")]]'
2019-06-23 23:34:19 +00:00
class QuentynQuinnSpaceRanger(_ParserScraper):
stripUrl = 'http://www.rhjunior.com/%s/'
firstStripUrl = stripUrl % 'quentyn-quinn-space-ranger-0001'
url = stripUrl % 'comics/quentyn-quinn-space-ranger'
imageSearch = '//div[contains(@class, "entry-content")]//img'
prevSearch = ('//a[@rel="prev"]', '//a[@title="Quentyn Quinn, Space Ranger"]')
2019-07-13 03:44:27 +00:00
class QuestionableContent(_ParserScraper):
url = 'http://www.questionablecontent.net/'
stripUrl = url + 'view.php?comic=%s'
2013-04-10 21:57:09 +00:00
firstStripUrl = stripUrl % '1'
2019-07-13 03:44:27 +00:00
imageSearch = '//img[contains(@src, "comics/")]'
prevSearch = '//a[text()="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'