Added HijinksEnsue comic strip.

This commit is contained in:
Bastian Kleineidam 2013-02-06 06:58:06 +01:00
parent af9d8e90f0
commit 052e510085
2 changed files with 10 additions and 4 deletions

View file

@ -1,10 +1,8 @@
Dosage 1.10 (released xx.xx.2013)
Features:
- comics: Added SequentialArt comic strip.
- comics: Added VampireCheerleader comic strip.
- comics: Added GrrlPower comic strip.
- comics: Added Spinnerette comic strip.
- comics: Added comic strips SequentialArt, VampireCheerleader,
GrrlPower, Spinnerette, HijinksEnsue.
Changes:
- cmdline: Added the --continue option.

View file

@ -5,6 +5,14 @@ from ..scraper import _BasicScraper
from ..util import tagre
class HijinksEnsue(_BasicScraper):
url = 'http://hijinksensue.com/'
stripUrl = url + '%s/'
imageSearch = compile(tagre("img", "src", r'(http://hijinksensue\.com/comics/\d+-\d+-\d+[^"]+)'))
prevSearch = compile(tagre("a", "href", r'(http://hijinksensue\.com/\d+/\d+/\d+/[^"]+)', after="navi-prev"))
help = 'Index format: yyyy/mm/dd/name'
class HorribleVille(_BasicScraper):
url = 'http://horribleville.com/'
stripUrl = url + 'd/%s.html'