Remove make_scraper magic from webcomiceu.

This commit is contained in:
Tobias Gruetzmacher 2016-05-07 03:20:01 +02:00
parent 975d2376bf
commit 849e60e795

View file

@ -1,26 +1,44 @@
# -*- coding: iso-8859-1 -*- # -*- coding: utf-8 -*-
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
# Copyright (C) 2012-2014 Bastian Kleineidam # Copyright (C) 2012-2014 Bastian Kleineidam
# Copyright (C) 2015-2016 Tobias Gruetzmacher
from re import compile from __future__ import absolute_import, division, print_function
from ..scraper import make_scraper
from ..util import tagre
_prevSearch = compile(tagre("a", "href", r'(\?id=\d+)') + tagre("img", "src", r'images/navi-zurueck\.gif')) from ..scraper import _ParserScraper
_imageSearch = compile(tagre("img", "src", r'([^"]+/img/comic/[^"]+)', after="comicimg"))
def add(name, shortname):
url = 'http://%s.webcomic.eu/' % shortname
classname = 'WebcomicEu_%s' % name
globals()[classname] = make_scraper(classname,
name = 'WebcomicEu/' + name,
url = url,
stripUrl = url + '?id=%s',
imageSearch = _imageSearch,
prevSearch = _prevSearch,
help = 'Index format: number',
)
add('TheBessEffect', 'thebesseffect') class _WebcomicEu(_ParserScraper):
add('TheBessEffectEnglish', 'tbe-english') imageSearch = '//img[@id="comicimg"]'
add('Talandor', 'talandor') prevSearch = '//a[img[contains(@src, "navi-zurueck")]]'
help = 'Index format: number'
@property
def name(self):
return 'WebcomicEu/' + super(_WebcomicEu, self).name
@property
def url(self):
return 'http://%s.webcomic.eu/' % self.sub
@property
def stripUrl(self):
return self.url + '?id=%s'
@property
def firstStripUrl(self):
return self.stripUrl % '1'
class TheBessEffect(_WebcomicEu):
lang = 'de'
sub = 'thebesseffect'
class TheBessEffectEnglish(_WebcomicEu):
sub = 'tbe-english'
class Talandor(_WebcomicEu):
lang = 'de'
sub = 'talandor'