Add ICanBarelyDraw

This commit is contained in:
Bastian Kleineidam 2013-07-04 12:22:20 +02:00
parent 59bd30cb71
commit a27ab5460b
3 changed files with 18 additions and 1 deletions

View file

@ -1,3 +1,9 @@
Dosage 2.5 (released xx.7.2013)
Features:
- comics: Added ICanBarelyDraw.
Dosage 2.4 (released 24.6.2013)
Features:

View file

@ -28,6 +28,17 @@ class IanJay(_BasicScraper):
help = 'Index foramt: nnn'
class ICanBarelyDraw(_BasicScraper):
url = 'http://www.icanbarelydraw.com/comic/'
rurl = escape(url)
stripUrl = url + '%s'
firstStripUrl = stripUrl % '39'
imageSearch = compile(tagre("img", "src", r'(%scomics/\d+-\d+-\d+-[^"]+)' % rurl))
prevSearch = compile(tagre("a", "href", r'(%s\d+)' % rurl))
help = 'Index format: number'
description = u'Webcomic featuring technology, romance, and odd behavior'
class IDreamOfAJeanieBottle(_BasicScraper):
url = 'http://jeaniebottle.com/'
stripUrl = url + '?p=%s'

View file

@ -35,7 +35,7 @@ from distutils.command.register import register
from distutils import util
from distutils.file_util import write_file
AppVersion = '2.4'
AppVersion = '2.5'
AppName = 'Dosage'
py_excludes = ['doctest', 'unittest', 'Tkinter', 'pdb',