32 lines
1.2 KiB
Python
32 lines
1.2 KiB
Python
|
# -*- coding: iso-8859-1 -*-
|
||
|
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
|
||
|
# Copyright (C) 2012 Bastian Kleineidam
|
||
|
|
||
|
from re import compile, IGNORECASE, DOTALL
|
||
|
from ..scraper import make_scraper
|
||
|
|
||
|
|
||
|
def add(name, subpath):
|
||
|
baseUrl = 'http://www.webcomicsnation.com/'
|
||
|
classname = 'WebcomicsNation_%s' % name
|
||
|
globals()[classname] = make_scraper(classname,
|
||
|
name = 'WebcomicsNation/' + name,
|
||
|
latestUrl = baseUrl + subpath,
|
||
|
stripUrl = baseUrl + '?view=archive&chapter=%s',
|
||
|
imageSearch = compile(r'<a name="strip\d*?">.*?<img[^>]+?src="([^"]*?memberimages/.+?)"', IGNORECASE + DOTALL),
|
||
|
prevSearch = compile(r'href="([^"]*?whichbutton=prev[^"]*?)"', IGNORECASE),
|
||
|
help = 'Index format: nnnn (non-contiguous)',
|
||
|
)
|
||
|
|
||
|
|
||
|
add('AgnesQuill', 'daveroman/agnes/')
|
||
|
add('Elvenbaath', 'tdotodot2k/elvenbaath/')
|
||
|
add('IrrationalFears', 'uvernon/irrationalfears/')
|
||
|
add('KismetHuntersMoon', 'laylalawlor/huntersmoon/')
|
||
|
add('SaikoAndLavender', 'gc/saiko/')
|
||
|
add('MyMuse', 'gc/muse/')
|
||
|
add('NekkoAndJoruba', 'nekkoandjoruba/nekkoandjoruba/')
|
||
|
add('JaxEpoch', 'johngreen/quicken/')
|
||
|
add('QuantumRockOfAges', 'DreamchildNYC/quantum/')
|
||
|
add('ClownSamurai', 'qsamurai/clownsamurai/')
|