Webcomics Nation is gone.
This commit is contained in:
parent
dab5aef094
commit
7626b1e100
1 changed files with 0 additions and 32 deletions
|
@ -1,32 +0,0 @@
|
|||
# -*- coding: iso-8859-1 -*-
|
||||
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
|
||||
# Copyright (C) 2012-2014 Bastian Kleineidam
|
||||
|
||||
from re import compile, IGNORECASE, DOTALL
|
||||
from ..scraper import make_scraper
|
||||
|
||||
_imageSearch = compile(r'<a name="strip\d*?">.*?<img[^>]+?src="([^"]*?memberimages/.+?)"', IGNORECASE + DOTALL)
|
||||
_prevSearch = compile(r'href="([^"]*?whichbutton=prev[^"]*?)"', IGNORECASE)
|
||||
|
||||
|
||||
def add(name, subpath):
|
||||
baseUrl = 'http://www.webcomicsnation.com/'
|
||||
classname = 'WebcomicsNation_%s' % name
|
||||
globals()[classname] = make_scraper(classname,
|
||||
name = 'WebcomicsNation/' + name,
|
||||
url = baseUrl + subpath,
|
||||
stripUrl = baseUrl + '?view=archive&chapter=%s',
|
||||
imageSearch = _imageSearch,
|
||||
multipleImagesPerStrip = True,
|
||||
prevSearch = _prevSearch,
|
||||
# the prevSearch is a redirect
|
||||
prevUrlMatchesStripUrl = False,
|
||||
help = 'Index format: nnnn (non-contiguous)',
|
||||
)
|
||||
|
||||
|
||||
add('AgnesQuill', 'daveroman/agnes/')
|
||||
add('MyMuse', 'gc/muse/')
|
||||
add('NekkoAndJoruba', 'nekkoandjoruba/nekkoandjoruba/')
|
||||
# custom navigation
|
||||
#add('ClownSamurai', 'qsamurai/clownsamurai/')
|
Loading…
Reference in a new issue