From 5fb39c5fafa1fd2ee20d19e0b2166403f46e5d0f Mon Sep 17 00:00:00 2001 From: Techwolf Date: Sun, 23 Jun 2019 16:34:07 -0700 Subject: [PATCH] Add TalesOfTheQuestor --- dosagelib/plugins/t.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dosagelib/plugins/t.py b/dosagelib/plugins/t.py index f34ea3ccb..2fab01dc3 100644 --- a/dosagelib/plugins/t.py +++ b/dosagelib/plugins/t.py @@ -17,6 +17,14 @@ from ..util import tagre from .common import _ComicControlScraper, _TumblrScraper, _WordPressScraper, _WPNavi +class TalesOfTheQuestor(_ParserScraper): + stripUrl = 'http://www.rhjunior.com/%s/' + firstStripUrl = stripUrl % 'tales-of-the-questor-cover' + url = stripUrl % 'comics/tales-of-the-questor' + imageSearch = '//div[contains(@class, "entry-content")]//img' + prevSearch = ('//a[@rel="prev"]', '//a[@title="Tales of the Questor"]') + + class TheBrads(_ParserScraper): url = 'http://bradcolbow.com/archive/' imageSearch = '//div[%s]//img' % xpath_class('entry')