Added Nedroid comic strip.
This commit is contained in:
parent
052e510085
commit
137e30b3ac
2 changed files with 9 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue