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