Add TailsAndTactics

This commit is contained in:
Techwolf 2019-10-10 22:05:55 -07:00 committed by Tobias Gruetzmacher
parent 31b2c3c6ec
commit 1fdb644cb3

View file

@ -17,6 +17,14 @@ from ..util import tagre
from .common import _ComicControlScraper, _TumblrScraper, _WordPressScraper, _WPNavi, _WPNaviIn from .common import _ComicControlScraper, _TumblrScraper, _WordPressScraper, _WPNavi, _WPNaviIn
class TailsAndTactics(_ParserScraper):
url = 'http://tailsandtactics.com/comic/'
stripUrl = url + '%s/'
firstStripUrl = stripUrl % '1'
imageSearch = '//div[@class="comic-image"]/img'
prevSearch = '//a[text()=" Back"]'
class TalesOfTheQuestor(_ParserScraper): class TalesOfTheQuestor(_ParserScraper):
stripUrl = 'http://www.rhjunior.com/%s/' stripUrl = 'http://www.rhjunior.com/%s/'
firstStripUrl = stripUrl % 'tales-of-the-questor-cover' firstStripUrl = stripUrl % 'tales-of-the-questor-cover'