Fix TheGamerCat
This commit is contained in:
parent
19865eddf7
commit
c2c1355426
1 changed files with 4 additions and 7 deletions
|
@ -12,7 +12,8 @@ except ImportError:
|
||||||
from ..scraper import _BasicScraper, _ParserScraper
|
from ..scraper import _BasicScraper, _ParserScraper
|
||||||
from ..helpers import indirectStarter
|
from ..helpers import indirectStarter
|
||||||
from ..util import tagre
|
from ..util import tagre
|
||||||
from .common import ComicControlScraper, WordPressScraper, WordPressNavi, WordPressWebcomic
|
from .common import (ComicControlScraper, WordPressScraper, WordPressSpliced,
|
||||||
|
WordPressNavi, WordPressWebcomic)
|
||||||
|
|
||||||
|
|
||||||
class TailsAndTactics(_ParserScraper):
|
class TailsAndTactics(_ParserScraper):
|
||||||
|
@ -117,13 +118,9 @@ class TheForgottenOrder(ComicControlScraper):
|
||||||
firstStripUrl = url + 'comic/prolouge-01-book-1'
|
firstStripUrl = url + 'comic/prolouge-01-book-1'
|
||||||
|
|
||||||
|
|
||||||
class TheGamerCat(_ParserScraper):
|
class TheGamerCat(WordPressSpliced):
|
||||||
url = 'https://thegamercat.com/'
|
url = 'https://thegamercat.com/'
|
||||||
stripUrl = url + 'comic/%s/'
|
firstStripUrl = url + 'comic/06102011/'
|
||||||
firstStripUrl = stripUrl % '06102011'
|
|
||||||
imageSearch = '//div[@id="comic"]//img'
|
|
||||||
prevSearch = '//a[contains(@class, "comic-nav-previous")]'
|
|
||||||
help = 'Index format: stripname'
|
|
||||||
|
|
||||||
|
|
||||||
class TheGentlemansArmchair(WordPressScraper):
|
class TheGentlemansArmchair(WordPressScraper):
|
||||||
|
|
Loading…
Reference in a new issue