Added FoulLanguage Comic

This commit is contained in:
Peter B 2013-12-29 21:03:11 -05:00
parent 1de57ea1fe
commit ceca4ba102

8
dosagelib/plugins/f.py Normal file → Executable file
View file

@ -142,6 +142,14 @@ class ForLackOfABetterComic(_BasicScraper):
help = 'Index format: number' help = 'Index format: number'
description = u'A hand drawn comic about everyday life situations.' description = u'A hand drawn comic about everyday life situations.'
class FoulLanguage(_BasicScraper):
description = u'Weekly cartoons about a geeky, neurotic, duck trying to survive in a stupid, stupid world.'
url = 'http://www.fowllanguagecomics.com/'
stripUrl = url + 'comic/%s'
firstStripUrl = stripUrl % 'part-of-the-process'
imageSearch = compile(tagre("img", "src", r'(http://i\d\.wp\.com/www\.fowllanguagecomics\.com/wp-content/uploads/\d+/\d+/[^"]+\.[a-z]+)', after="comic"))
prevSearch = compile(tagre("a", "href", r'([^"]+)', after="comic-nav-previous"))
help = 'Index format: yyyy/mm/stripname'
class Freefall(_BasicScraper): class Freefall(_BasicScraper):
url = 'http://freefall.purrsia.com/default.htm' url = 'http://freefall.purrsia.com/default.htm'