Add BittersweetCandyBowl
This commit is contained in:
parent
48ed091878
commit
f99839f42a
1 changed files with 12 additions and 0 deletions
|
@ -139,6 +139,18 @@ class BillyTheDunce(_ParserScraper):
|
||||||
starter = indirectStarter
|
starter = indirectStarter
|
||||||
|
|
||||||
|
|
||||||
|
class BittersweetCandyBowl(_ParserScraper):
|
||||||
|
url = 'https://www.bittersweetcandybowl.com/'
|
||||||
|
stripUrl = url + '%s.html'
|
||||||
|
firstStripUrl = stripUrl % 'c1/p1'
|
||||||
|
imageSearch = '//img[@id="page_img"]'
|
||||||
|
prevSearch = '//a[@rel="prev"]'
|
||||||
|
|
||||||
|
def namer(self, imageUrl, pageUrl):
|
||||||
|
filename = imageUrl.rsplit('/', 2)
|
||||||
|
return filename[1] + '_' + filename[2]
|
||||||
|
|
||||||
|
|
||||||
class BlankIt(_ParserScraper):
|
class BlankIt(_ParserScraper):
|
||||||
url = 'http://blankitcomics.com/'
|
url = 'http://blankitcomics.com/'
|
||||||
firstStripUrl = url + 'comic/well-what-would-you-do'
|
firstStripUrl = url + 'comic/well-what-would-you-do'
|
||||||
|
|
Loading…
Reference in a new issue