commit
08babacd81
2 changed files with 11 additions and 2 deletions
|
@ -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'
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue