From 495b1149bd694cc642312f70235adf17cc7afed5 Mon Sep 17 00:00:00 2001 From: Luc Fouin Date: Thu, 4 Jul 2013 11:08:16 +0200 Subject: [PATCH] added GoGetARoomie --- dosagelib/plugins/g.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/dosagelib/plugins/g.py b/dosagelib/plugins/g.py index 725d8910e..1bc2be260 100644 --- a/dosagelib/plugins/g.py +++ b/dosagelib/plugins/g.py @@ -151,6 +151,16 @@ class GoblinsComic(_BasicScraper): 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): description = u'Gone with the Blastwave - Type E webcomic.' url = 'http://www.blastwave-comic.com/index.php?p=comic&nro=1'