Skip to content

Commit

Permalink
Add C-Section Comics (fixes #223)
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiX committed Jun 3, 2022
1 parent 70beb37 commit da30ce2
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion dosagelib/plugins/c.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
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

Expand Down Expand Up @@ -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/'
Expand Down

0 comments on commit da30ce2

Please sign in to comment.