feat: Added TotemPole
This commit is contained in:
parent
067dba7c75
commit
1afcf55f85
1 changed files with 9 additions and 1 deletions
|
@ -7,7 +7,7 @@ from re import compile, escape, MULTILINE
|
||||||
from functools import cached_property
|
from functools import cached_property
|
||||||
|
|
||||||
from ..scraper import _BasicScraper, _ParserScraper, ParserScraper
|
from ..scraper import _BasicScraper, _ParserScraper, ParserScraper
|
||||||
from ..helpers import indirectStarter, joinPathPartsNamer
|
from ..helpers import bounceStarter, indirectStarter, joinPathPartsNamer
|
||||||
from ..util import tagre
|
from ..util import tagre
|
||||||
from .common import (ComicControlScraper, WordPressScraper, WordPressSpliced,
|
from .common import (ComicControlScraper, WordPressScraper, WordPressSpliced,
|
||||||
WordPressNavi, WordPressWebcomic)
|
WordPressNavi, WordPressWebcomic)
|
||||||
|
@ -275,6 +275,14 @@ class ToonHole(ParserScraper):
|
||||||
namer = joinPathPartsNamer(imageparts=(-3, -2, -1))
|
namer = joinPathPartsNamer(imageparts=(-3, -2, -1))
|
||||||
|
|
||||||
|
|
||||||
|
class TotemPole(WordPressNavi):
|
||||||
|
url = 'https://totempole666.com/'
|
||||||
|
stripUrl = url + 'comic/'
|
||||||
|
firstStripUrl = stripUrl + 'first-time-for-everything-00-cover/'
|
||||||
|
adult = True
|
||||||
|
starter = bounceStarter
|
||||||
|
|
||||||
|
|
||||||
class TrippingOverYou(_BasicScraper):
|
class TrippingOverYou(_BasicScraper):
|
||||||
url = 'http://www.trippingoveryou.com/'
|
url = 'http://www.trippingoveryou.com/'
|
||||||
stripUrl = url + 'comic/%s'
|
stripUrl = url + 'comic/%s'
|
||||||
|
|
Loading…
Reference in a new issue