Added ExtraOrdinary.
This commit is contained in:
parent
190ffcd390
commit
f71961acbc
2 changed files with 11 additions and 1 deletions
|
@ -1,7 +1,8 @@
|
|||
Dosage 2.0 (released xx.xx.2013)
|
||||
|
||||
Features:
|
||||
- comics: Added SnowFlakes, StuffNoOneToldMe and WebDesignerCOTW.
|
||||
- comics: Added ExtraOrdinary, SnowFlakes,
|
||||
StuffNoOneToldMe and WebDesignerCOTW.
|
||||
- comics: Added the --vote option to vote for popular comics.
|
||||
|
||||
Changes:
|
||||
|
|
|
@ -154,6 +154,15 @@ class ExtraLife(_BasicScraper):
|
|||
help = 'Index format: stripname'
|
||||
|
||||
|
||||
class ExtraOrdinary(_BasicScraper):
|
||||
url = 'http://exocomics.com/'
|
||||
stripUrl = url + '%s'
|
||||
firstStripUrl = stripUrl % '01'
|
||||
prevSearch = compile(tagre("a", "href", r'(http://www\.exocomics\.com/\d+)', before="prev"))
|
||||
imageSearch = compile(tagre("img", "src", r'(http://www\.exocomics\.com/comics/comics/\d+\.[^"]+)'))
|
||||
help = 'Index format: number'
|
||||
|
||||
|
||||
class EyeOfRamalach(_BasicScraper):
|
||||
url = 'http://theeye.katbox.net/'
|
||||
stripUrl = url + 'comic/%s/'
|
||||
|
|
Loading…
Reference in a new issue