From 491b5457b258da892aa709b3a3c59c87a50a9fd4 Mon Sep 17 00:00:00 2001 From: zac9 Date: Sun, 28 Sep 2014 06:29:02 -0700 Subject: [PATCH] Added comic ShotgunShuffle --- dosagelib/plugins/s.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/dosagelib/plugins/s.py b/dosagelib/plugins/s.py index 82ca43c5d..cfe31caaa 100755 --- a/dosagelib/plugins/s.py +++ b/dosagelib/plugins/s.py @@ -254,6 +254,16 @@ class _Shortpacked(_BasicScraper): help = 'Index format: yyyy/comic/book-nn/mm-name1/name2' +class ShotgunShuffle(_BasicScraper): + description = u'adventures of the Seven Buckingham sisters, a fat cat, an irritable roommate, a dirty hippy' + url = 'http://shotgunshuffle.com/' + stripUrl = url + 'comic/%s' + firstStripUrl = stripUrl % 'pilot/' + imageSearch = compile(tagre("img", "src", r'(http://shotgunshuffle.com/wp-content/uploads/\d+/\d+/\d+-[^"]+)')) + prevSearch = compile(tagre("a", "href", r'([^"]+)', after="navi navi-prev")) + help = 'Index format: yyyy/mm/stripname' + + class SinFest(_BasicScraper): description = u'Strip dealing with contemporary issues and religion. Created by Tatsuya Ishida.' name = 'KeenSpot/SinFest'