Add FreighterTails

This commit is contained in:
Techwolf 2019-07-05 23:21:18 -07:00 committed by Tobias Gruetzmacher
parent 85a7adadc9
commit ab366f12d3

View file

@ -161,6 +161,16 @@ class Freefall(_BasicScraper):
help = 'Index format: nnnn/nnnnn'
class FreighterTails(_ParserScraper):
url = 'http://www.mzzkiti.com/'
stripUrl = url + 'log%s.htm'
firstStripUrl = stripUrl % '001'
imageSearch = ('//img[contains(@src, "Strip")]',
'//img[contains(@src, "Caption")]')
prevSearch = '//a[./img[contains(@src, "prev")]]'
endOfLife = True
class FullFrontalNerdity(_BasicScraper):
url = 'http://ffn.nodwick.com/'
rurl = escape(url)