From bf13b13ab64fc047abcf342ba9546e2bc0c2a724 Mon Sep 17 00:00:00 2001 From: Tobias Gruetzmacher Date: Sun, 3 Mar 2013 22:03:27 +0100 Subject: [PATCH] Add StickyDillyBuns. One of the Pixie Trix Comix. --- dosagelib/plugins/s.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dosagelib/plugins/s.py b/dosagelib/plugins/s.py index cca97d906..fb2cd06de 100644 --- a/dosagelib/plugins/s.py +++ b/dosagelib/plugins/s.py @@ -209,6 +209,14 @@ class _StationV3(_BasicScraper): help = 'Index format: yyyymmdd' +class StickyDillyBuns(_BasicScraper): + url = 'http://www.stickydillybuns.com/' + stripUrl = url + 'strips-sdb/%s' + imageSearch = compile(tagre("img", "src", r'([^"]*/comics/[^"]+)')) + prevSearch = compile(tagre("a", "href", r'([^"]*/strips-sdb/[^"]+)', before="cn[id]prev")) + help = 'Index format: name' + + class Stubble(_BasicScraper): url = 'http://stubblecomics.com/' stripUrl = url + '?p=%s'