Merge pull request #15 from Null000/master

added doctor cat
This commit is contained in:
Damjan Košir 2015-04-26 22:45:32 +12:00
commit 08babacd81
2 changed files with 11 additions and 2 deletions

View file

@ -4,7 +4,7 @@
from re import compile, escape
from ..scraper import _BasicScraper
from ..scraper import _BasicScraper, _ParserScraper
from ..helpers import indirectStarter, bounceStarter
from ..util import tagre
@ -199,6 +199,16 @@ class DMFA(_BasicScraper):
help = 'Index format: nnn (normally, some specials)'
class DoctorCat(_ParserScraper):
url = "http://doctorcatmd.com/"
stripUrl = url + "comic/%s"
firstStripUrl = stripUrl % "doctor-cat"
css = True
imageSearch = '#comic img'
prevSearch = '.navi-prev'
help = 'Index format: stripname'
class DoemainOfOurOwn(_BasicScraper):
url = 'http://www.doemain.com/'
stripUrl = url + 'index.cgi/%s'

View file

@ -48,7 +48,6 @@ class TheDreamlandChronicles(_BasicScraper):
class TheGamerCat(_ParserScraper):
url = "http://www.thegamercat.com/"
rurl = escape(url)
stripUrl = url + "comic/%s/"
firstStripUrl = stripUrl % "06102011"
css = True