Fix Brink and mark as endOfLife

This commit is contained in:
Tobias Gruetzmacher 2020-09-29 22:52:11 +02:00
parent 5afab71e7f
commit 2364e8bab3

View file

@ -257,14 +257,11 @@ class BratHalla(_WordPressScraper):
url = 'http://brat-halla.com/'
class Brink(_BasicScraper):
url = 'http://paperfangs.com/brink/'
rurl = escape(url)
stripUrl = url + '?p=%s'
firstStripUrl = stripUrl % '5'
imageSearch = compile(tagre("img", "src", r'(%scomics/[^"]+)' % rurl))
prevSearch = compile(tagre("a", "href", r'(%s[^"]+)' % rurl, after="prev"))
help = 'Index format: number'
class Brink(_WordPressScraper):
stripUrl = 'https://paperfangs.com/brink/?comic=%s'
firstStripUrl = stripUrl % 'chapter1coversmall'
url = stripUrl % 'brink639small'
endOfLife = True
class BroodHollow(_WordPressScraper):