added GoGetARoomie

This commit is contained in:
Luc Fouin 2013-07-04 11:08:16 +02:00
parent 75bbf10d78
commit 495b1149bd

View file

@ -151,6 +151,16 @@ class GoblinsComic(_BasicScraper):
help = 'Index format: ddmmyyyy' help = 'Index format: ddmmyyyy'
class GoGetARoomie(_BasicScraper):
description = u"Go Get a Roomie!"
url = 'http://www.gogetaroomie.com/index.php'
stripUrl = url + '?id=%s'
firstStripUrl = stripUrl % '1'
imageSearch = compile(tagre('img', 'src', r'(comics/[^"]+)'))
prevSearch = compile(tagre('a', 'href', r'([^"]+)', after='rel="prev"'))
help = 'Index format: nnn'
class GoneWithTheBlastwave(_BasicScraper): class GoneWithTheBlastwave(_BasicScraper):
description = u'Gone with the Blastwave - Type E webcomic.' description = u'Gone with the Blastwave - Type E webcomic.'
url = 'http://www.blastwave-comic.com/index.php?p=comic&nro=1' url = 'http://www.blastwave-comic.com/index.php?p=comic&nro=1'