Add BeyondTheVeil
This commit is contained in:
parent
9e6bd4803a
commit
24b4d1a391
1 changed files with 14 additions and 0 deletions
|
@ -132,6 +132,20 @@ class BetweenFailures(_BasicScraper):
|
|||
help = 'Index format: stripname'
|
||||
|
||||
|
||||
class BeyondTheVeil(_WordPressScraper):
|
||||
url = 'http://beyondtheveilcomic.com/'
|
||||
stripUrl = url + '?comic=%s'
|
||||
firstStripUrl = stripUrl % '01252010'
|
||||
endOfLife = True
|
||||
|
||||
def namer(self, imageUrl, pageUrl):
|
||||
# Fix inconsistent filenames
|
||||
filename = imageUrl.rsplit('/', 1)[-1]
|
||||
filename = filename.replace('BtV_pg43_bw', '2014-04-25-BtV_pg43_bw')
|
||||
filename = filename.replace('BtVpg28Ch7b', '2014-07-04-BtVpg28Ch7b')
|
||||
return filename
|
||||
|
||||
|
||||
class BiggerThanCheeses(_BasicScraper):
|
||||
url = 'http://www.biggercheese.com/'
|
||||
stripUrl = url + 'index.php?comic=%s'
|
||||
|
|
Loading…
Reference in a new issue