Added some comics.

This commit is contained in:
Bastian Kleineidam 2013-02-06 22:27:40 +01:00
parent c19cb93a14
commit 68d58640e8
4 changed files with 30 additions and 1 deletions

View file

@ -5,7 +5,8 @@ Features:
GrrlPower, Spinnerette, HijinksEnsue, Nedroid, Antics, ChannelAte,
ToonHole, ThisIsIndexed, WastedTalent, ChainsawSuit, ThreePanelSoul,
SpaceTrawler, ScenesFromAMultiverse, BroodHollow, BoxerHockey,
Wonderella, BadMachinery.
Wonderella, BadMachinery, TheBrads, FirstWorldProblems,
Omake Theater.
Changes:
- cmdline: Added the --continue option.

View file

@ -42,6 +42,15 @@ class FilibusterCartoons(_BasicScraper):
help = 'Index format: yyyy/mm/dd/name'
class FirstWorldProblems(_BasicScraper):
url = 'http://bradcolbow.com/archive/C5/'
stripUrl = url + '%s'
imageSearch = compile(tagre("img", "src", r'(http://(?:fwpcomics\.s3\.amazonaws\.com|s3\.amazonaws\.com/fwpcomics)/s1-[^"]+)'))
prevSearch = compile(tagre("a", "href", r'(http://bradcolbow\.com/archive/C5/[^"]+)', before="prev"))
multipleImagesPerStrip = True
help = 'Index format: a letter and a number'
class FlakyPastry(_BasicScraper):
url = 'http://flakypastry.runningwithpencils.com/index.php'
stripUrl = 'http://flakypastry.runningwithpencils.com/comic.php?strip_id=%s'

View file

@ -27,6 +27,16 @@ class OddFish(_BasicScraper):
help = 'Index format: stripname'
class OmakeTheater(_BasicScraper):
url = 'http://omaketheater.com/'
stripUrl = url + 'comic/%s'
imageSearch = compile(tagre("img", "src", r'(http://media\.omaketheater\.com/4koma/[^"]+)'))
prevSearch = compile(tagre("a", "href", r'(http://omaketheater\.com/comic/\d+/)', after="prev"))
starter = indirectStarter(url,
compile(tagre("a", "href", r'(http://omaketheater\.com/comic/\d+/)')))
help = 'Index format: number (unpadded)'
class OnTheEdge(_BasicScraper):
url = 'http://ontheedgecomics.com/'
stripUrl = 'http://ontheedgecomics.com/comic/%s'

View file

@ -8,6 +8,15 @@ from ..helpers import indirectStarter
from ..util import tagre
class TheBrads(_BasicScraper):
url = 'http://bradcolbow.com/archive/C4/'
stripUrl = url + '%s'
imageSearch = compile(tagre("img", "src", r'(http://s3\.amazonaws\.com/the_brads/the-brads-[^"]+)'))
prevSearch = compile(tagre("a", "href", r'(http://bradcolbow\.com/archive/C4/[^"]+)', before="prev"))
multipleImagesPerStrip = True
help = 'Index format: a letter and a number'
class TheDevilsPanties(_BasicScraper):
url = 'http://thedevilspanties.com/'
stripUrl = url + 'archives/%s'