Add TracesOfThePast (SFW/NSFW)
This commit is contained in:
parent
57046e23ca
commit
8e8d5e5723
1 changed files with 21 additions and 1 deletions
|
@ -14,7 +14,7 @@ except ImportError:
|
||||||
from ..scraper import _BasicScraper, _ParserScraper
|
from ..scraper import _BasicScraper, _ParserScraper
|
||||||
from ..helpers import indirectStarter, xpath_class
|
from ..helpers import indirectStarter, xpath_class
|
||||||
from ..util import tagre
|
from ..util import tagre
|
||||||
from .common import _ComicControlScraper, _TumblrScraper, _WordPressScraper, _WPNavi
|
from .common import _ComicControlScraper, _TumblrScraper, _WordPressScraper, _WPNavi, _WPNaviIn
|
||||||
|
|
||||||
|
|
||||||
class TalesOfTheQuestor(_ParserScraper):
|
class TalesOfTheQuestor(_ParserScraper):
|
||||||
|
@ -173,6 +173,26 @@ class ToonHole(_WordPressScraper):
|
||||||
return url in (self.url + "comic/if-game-of-thrones-was-animated/",)
|
return url in (self.url + "comic/if-game-of-thrones-was-animated/",)
|
||||||
|
|
||||||
|
|
||||||
|
class TracesOfThePast(_WPNaviIn):
|
||||||
|
baseUrl = 'http://rickgriffinstudios.com/'
|
||||||
|
url = baseUrl + 'in-the-new-age/'
|
||||||
|
stripUrl = baseUrl + 'comic-post/%s/'
|
||||||
|
firstStripUrl = stripUrl % 'totp-page-1'
|
||||||
|
latestSearch = '//a[contains(@title, "Permanent Link")]'
|
||||||
|
starter = indirectStarter
|
||||||
|
|
||||||
|
|
||||||
|
class TracesOfThePastNSFW(_WPNaviIn):
|
||||||
|
name = 'TracesOfThePast/NSFW'
|
||||||
|
baseUrl = 'http://rickgriffinstudios.com/'
|
||||||
|
url = baseUrl + 'in-the-new-age/'
|
||||||
|
stripUrl = baseUrl + 'comic-post/%s/'
|
||||||
|
firstStripUrl = stripUrl % 'totp-page-1-nsfw'
|
||||||
|
latestSearch = '//a[contains(@title, "NSFW")]'
|
||||||
|
starter = indirectStarter
|
||||||
|
adult = True
|
||||||
|
|
||||||
|
|
||||||
class TracyAndTristan(_BasicScraper):
|
class TracyAndTristan(_BasicScraper):
|
||||||
url = 'http://tandt.thecomicseries.com/'
|
url = 'http://tandt.thecomicseries.com/'
|
||||||
rurl = escape(url)
|
rurl = escape(url)
|
||||||
|
|
Loading…
Reference in a new issue