Drop webcomic.eu (site is gone)
Not enough archived history to switch to Internet Archive...
This commit is contained in:
parent
63da9dd0d4
commit
275370a835
2 changed files with 4 additions and 44 deletions
|
@ -1,7 +1,7 @@
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
|
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
|
||||||
# Copyright (C) 2012-2014 Bastian Kleineidam
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
||||||
# Copyright (C) 2015-2019 Tobias Gruetzmacher
|
# Copyright (C) 2015-2020 Tobias Gruetzmacher
|
||||||
|
|
||||||
from __future__ import absolute_import, division, print_function
|
from __future__ import absolute_import, division, print_function
|
||||||
|
|
||||||
|
@ -586,6 +586,9 @@ class Removed(Scraper):
|
||||||
cls('TwoTwoOneFour'),
|
cls('TwoTwoOneFour'),
|
||||||
cls('VampireCheerleaders'),
|
cls('VampireCheerleaders'),
|
||||||
cls('WayfarersMoon'),
|
cls('WayfarersMoon'),
|
||||||
|
cls('WebcomicEu/Talandor'),
|
||||||
|
cls('WebcomicEu/TheBessEffect'),
|
||||||
|
cls('WebcomicEu/TheBessEffectEnglish'),
|
||||||
cls('WebcomicsNation/AgnesQuill'),
|
cls('WebcomicsNation/AgnesQuill'),
|
||||||
cls('WebcomicsNation/MyMuse'),
|
cls('WebcomicsNation/MyMuse'),
|
||||||
cls('WebcomicsNation/NekkoAndJoruba'),
|
cls('WebcomicsNation/NekkoAndJoruba'),
|
||||||
|
|
|
@ -1,43 +0,0 @@
|
||||||
# -*- coding: utf-8 -*-
|
|
||||||
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
|
|
||||||
# Copyright (C) 2012-2014 Bastian Kleineidam
|
|
||||||
# Copyright (C) 2015-2016 Tobias Gruetzmacher
|
|
||||||
|
|
||||||
from __future__ import absolute_import, division, print_function
|
|
||||||
|
|
||||||
from ..scraper import _ParserScraper
|
|
||||||
|
|
||||||
|
|
||||||
class _WebcomicEu(_ParserScraper):
|
|
||||||
imageSearch = '//img[@id="comicimg"]'
|
|
||||||
prevSearch = '//a[img[contains(@src, "navi-zurueck")]]'
|
|
||||||
help = 'Index format: number'
|
|
||||||
|
|
||||||
def __init__(self, name):
|
|
||||||
super(_WebcomicEu, self).__init__('WebcomicEu/' + 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'
|
|
Loading…
Reference in a new issue