Added ExtraOrdinary.

This commit is contained in:
Bastian Kleineidam 2013-04-09 19:36:51 +02:00
parent 190ffcd390
commit f71961acbc
2 changed files with 11 additions and 1 deletions

View file

@ -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:

View file

@ -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/'