Add C-Section Comics (fixes #223)
This commit is contained in:
parent
70beb37fa9
commit
da30ce29bb
1 changed files with 8 additions and 1 deletions
|
@ -7,7 +7,7 @@ from re import compile, escape
|
|||
from typing import List
|
||||
|
||||
from ..scraper import _BasicScraper, _ParserScraper
|
||||
from ..helpers import bounceStarter, indirectStarter
|
||||
from ..helpers import bounceStarter, indirectStarter, joinPathPartsNamer
|
||||
from ..util import tagre
|
||||
from .common import _WordPressScraper, _WPNavi, _WPWebcomic
|
||||
|
||||
|
@ -404,6 +404,13 @@ class CrossTimeCafe(_ParserScraper):
|
|||
endOfLife = True
|
||||
|
||||
|
||||
class CSectionComics(_WordPressScraper):
|
||||
url = 'https://www.csectioncomics.com/'
|
||||
firstStripUrl = url + 'comics/one-day-in-country'
|
||||
namer = joinPathPartsNamer((), (-3, -2, -1))
|
||||
multipleImagesPerStrip = True
|
||||
|
||||
|
||||
class CucumberQuest(_WPWebcomic):
|
||||
baseUrl = 'http://cucumber.gigidigi.com/'
|
||||
stripUrl = baseUrl + 'cq/%s/'
|
||||
|
|
Loading…
Reference in a new issue