added Deathbulge
This commit is contained in:
parent
6de5b79fb8
commit
a9d7b4de12
1 changed files with 11 additions and 0 deletions
|
@ -67,6 +67,17 @@ class DeadWinter(_BasicScraper):
|
||||||
help = 'Index format: number'
|
help = 'Index format: number'
|
||||||
|
|
||||||
|
|
||||||
|
class Deathbulge(_BasicScraper):
|
||||||
|
url = 'http://www.deathbulge.com/api/comics'
|
||||||
|
imageSearch = compile(r"(/images/comics/\d+\.jpg)")
|
||||||
|
prevSearch = compile(r'"previous":(\d+),')
|
||||||
|
firstStripUrl = url + '/1'
|
||||||
|
def getPrevUrl(self, url, data):
|
||||||
|
if data[1] == self.url:
|
||||||
|
data = (data[0], data[1] + '/')
|
||||||
|
return _BasicScraper.getPrevUrl(self, url, data)
|
||||||
|
|
||||||
|
|
||||||
class DeepFried(_BasicScraper):
|
class DeepFried(_BasicScraper):
|
||||||
url = 'http://www.whatisdeepfried.com/'
|
url = 'http://www.whatisdeepfried.com/'
|
||||||
rurl = escape(url)
|
rurl = escape(url)
|
||||||
|
|
Loading…
Reference in a new issue