Add EverydayBlues
This commit is contained in:
parent
8b99b59056
commit
d00310f017
2 changed files with 13 additions and 1 deletions
|
@ -1,7 +1,8 @@
|
|||
Dosage 2.0 (released xx.xx.2013)
|
||||
|
||||
Features:
|
||||
- comics: Added DamnLol, ExtraOrdinary, GoblinsComic, RealmOfAtland, Science,
|
||||
- comics: Added DamnLol, EverydayBlues, ExtraOrdinary, GoblinsComic,
|
||||
RealmOfAtland, Science,
|
||||
SnowFlakes, StuffNoOneToldMe, WebDesignerCOTW and ZenPencils.
|
||||
- comics: Added the --vote option to vote for popular comics.
|
||||
|
||||
|
|
|
@ -116,6 +116,17 @@ class EverybodyLovesEricRaymond(_BasicScraper):
|
|||
help = 'Index format: name-of-old-comic'
|
||||
|
||||
|
||||
class EverydayBlues(_BasicScraper):
|
||||
url = 'http://everydayblues.everydayblues.net/'
|
||||
rurl = escape(url)
|
||||
stripUrl = url + '%s/'
|
||||
firstStripUrl = stripUrl % '2010/02/11/sometimes'
|
||||
prevSearch = compile(tagre("a", "href", r'(%s\d+/\d+/\d+/[^"]+/)' % rurl, after="navi-prev"))
|
||||
imageSearch = compile(tagre("img", "src", r'(%scomics/\d+-\d+-\d+-[^"]+)' % rurl))
|
||||
help = 'Index format: yyyy/mm/dd/stripname'
|
||||
description = 'A daily webcomic about the ups and downs of love, relationships and singledom.'
|
||||
|
||||
|
||||
class EvilDiva(_BasicScraper):
|
||||
url = 'http://www.evildivacomics.com/'
|
||||
stripUrl = url + '?p=%s'
|
||||
|
|
Loading…
Reference in a new issue