Add TalesOfTheQuestor
This commit is contained in:
parent
ff4fa7892d
commit
5fb39c5faf
1 changed files with 8 additions and 0 deletions
|
@ -17,6 +17,14 @@ from ..util import tagre
|
||||||
from .common import _ComicControlScraper, _TumblrScraper, _WordPressScraper, _WPNavi
|
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):
|
class TheBrads(_ParserScraper):
|
||||||
url = 'http://bradcolbow.com/archive/'
|
url = 'http://bradcolbow.com/archive/'
|
||||||
imageSearch = '//div[%s]//img' % xpath_class('entry')
|
imageSearch = '//div[%s]//img' % xpath_class('entry')
|
||||||
|
|
Loading…
Reference in a new issue