Added Nedroid comic strip.

This commit is contained in:
Bastian Kleineidam 2013-02-06 07:03:29 +01:00
parent 052e510085
commit 137e30b3ac
2 changed files with 9 additions and 1 deletions

View file

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

View file

@ -16,6 +16,14 @@ class NamirDeiter(_BasicScraper):
help = 'Index format: yyyymmdd'
class Nedroid(_BasicScraper):
url = 'http://nedroid.com/'
stripUrl = url + '%s/'
imageSearch = compile(tagre("img", "src", r'(http://nedroid\.com/comics/[^"]+)'))
prevSearch = compile(tagre("a", "href", r'(http://nedroid\.com/\d+/\d+/[^"]+)', after="prev"))
help = 'Index format: yyyy/mm/dd/name'
class NeoEarth(_BasicScraper):
url = 'http://www.neo-earth.com/NE/'
stripUrl = url + 'index.php?date=%s'