Added some comics.
This commit is contained in:
parent
c19cb93a14
commit
68d58640e8
4 changed files with 30 additions and 1 deletions
|
@ -5,7 +5,8 @@ Features:
|
||||||
GrrlPower, Spinnerette, HijinksEnsue, Nedroid, Antics, ChannelAte,
|
GrrlPower, Spinnerette, HijinksEnsue, Nedroid, Antics, ChannelAte,
|
||||||
ToonHole, ThisIsIndexed, WastedTalent, ChainsawSuit, ThreePanelSoul,
|
ToonHole, ThisIsIndexed, WastedTalent, ChainsawSuit, ThreePanelSoul,
|
||||||
SpaceTrawler, ScenesFromAMultiverse, BroodHollow, BoxerHockey,
|
SpaceTrawler, ScenesFromAMultiverse, BroodHollow, BoxerHockey,
|
||||||
Wonderella, BadMachinery.
|
Wonderella, BadMachinery, TheBrads, FirstWorldProblems,
|
||||||
|
Omake Theater.
|
||||||
|
|
||||||
Changes:
|
Changes:
|
||||||
- cmdline: Added the --continue option.
|
- cmdline: Added the --continue option.
|
||||||
|
|
|
@ -42,6 +42,15 @@ class FilibusterCartoons(_BasicScraper):
|
||||||
help = 'Index format: yyyy/mm/dd/name'
|
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):
|
class FlakyPastry(_BasicScraper):
|
||||||
url = 'http://flakypastry.runningwithpencils.com/index.php'
|
url = 'http://flakypastry.runningwithpencils.com/index.php'
|
||||||
stripUrl = 'http://flakypastry.runningwithpencils.com/comic.php?strip_id=%s'
|
stripUrl = 'http://flakypastry.runningwithpencils.com/comic.php?strip_id=%s'
|
||||||
|
|
|
@ -27,6 +27,16 @@ class OddFish(_BasicScraper):
|
||||||
help = 'Index format: stripname'
|
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):
|
class OnTheEdge(_BasicScraper):
|
||||||
url = 'http://ontheedgecomics.com/'
|
url = 'http://ontheedgecomics.com/'
|
||||||
stripUrl = 'http://ontheedgecomics.com/comic/%s'
|
stripUrl = 'http://ontheedgecomics.com/comic/%s'
|
||||||
|
|
|
@ -8,6 +8,15 @@ from ..helpers import indirectStarter
|
||||||
from ..util import tagre
|
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):
|
class TheDevilsPanties(_BasicScraper):
|
||||||
url = 'http://thedevilspanties.com/'
|
url = 'http://thedevilspanties.com/'
|
||||||
stripUrl = url + 'archives/%s'
|
stripUrl = url + 'archives/%s'
|
||||||
|
|
Loading…
Reference in a new issue