added doctor cat
This commit is contained in:
parent
0d37043225
commit
8df9d20556
2 changed files with 11 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
from re import compile, escape
|
from re import compile, escape
|
||||||
|
|
||||||
from ..scraper import _BasicScraper
|
from ..scraper import _BasicScraper, _ParserScraper
|
||||||
from ..helpers import indirectStarter, bounceStarter
|
from ..helpers import indirectStarter, bounceStarter
|
||||||
from ..util import tagre
|
from ..util import tagre
|
||||||
|
|
||||||
|
@ -199,6 +199,16 @@ class DMFA(_BasicScraper):
|
||||||
help = 'Index format: nnn (normally, some specials)'
|
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):
|
class DoemainOfOurOwn(_BasicScraper):
|
||||||
url = 'http://www.doemain.com/'
|
url = 'http://www.doemain.com/'
|
||||||
stripUrl = url + 'index.cgi/%s'
|
stripUrl = url + 'index.cgi/%s'
|
||||||
|
|
|
@ -48,7 +48,6 @@ class TheDreamlandChronicles(_BasicScraper):
|
||||||
|
|
||||||
class TheGamerCat(_ParserScraper):
|
class TheGamerCat(_ParserScraper):
|
||||||
url = "http://www.thegamercat.com/"
|
url = "http://www.thegamercat.com/"
|
||||||
rurl = escape(url)
|
|
||||||
stripUrl = url + "comic/%s/"
|
stripUrl = url + "comic/%s/"
|
||||||
firstStripUrl = stripUrl % "06102011"
|
firstStripUrl = stripUrl % "06102011"
|
||||||
css = True
|
css = True
|
||||||
|
|
Loading…
Reference in a new issue