Fix DasLebenIstKeinPonyhof (end of life)
This commit is contained in:
parent
f87ac17506
commit
70beb37fa9
1 changed files with 9 additions and 5 deletions
|
@ -1,7 +1,7 @@
|
||||||
# SPDX-License-Identifier: MIT
|
# SPDX-License-Identifier: MIT
|
||||||
# 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-2020 Tobias Gruetzmacher
|
# Copyright (C) 2015-2022 Tobias Gruetzmacher
|
||||||
# Copyright (C) 2019-2020 Daniel Ring
|
# Copyright (C) 2019-2020 Daniel Ring
|
||||||
from re import compile, escape
|
from re import compile, escape
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ from ..scraper import _BasicScraper, _ParserScraper
|
||||||
from ..helpers import indirectStarter, bounceStarter
|
from ..helpers import indirectStarter, bounceStarter
|
||||||
from ..util import tagre
|
from ..util import tagre
|
||||||
from .common import (_ComicControlScraper, _WordPressScraper, _WPNavi,
|
from .common import (_ComicControlScraper, _WordPressScraper, _WPNavi,
|
||||||
_WPNaviIn, _WPWebcomic)
|
_WPWebcomic)
|
||||||
|
|
||||||
|
|
||||||
class Damonk(_BasicScraper):
|
class Damonk(_BasicScraper):
|
||||||
|
@ -42,9 +42,13 @@ class DarthsAndDroids(_BasicScraper):
|
||||||
imageSearch = compile(tagre("img", "src", r'(/comics/darths\d\d\d\d\.jpg)'))
|
imageSearch = compile(tagre("img", "src", r'(/comics/darths\d\d\d\d\.jpg)'))
|
||||||
|
|
||||||
|
|
||||||
class DasLebenIstKeinPonyhof(_WPNaviIn):
|
class DasLebenIstKeinPonyhof(_ParserScraper):
|
||||||
url = 'http://sarahburrini.com/wordpress/'
|
baseUrl = 'https://sarahburrini.com/comic/das-leben-ist-kein-ponyhof/'
|
||||||
firstStripUrl = url + 'comic/mein-erster-webcomic/'
|
url = baseUrl + 'und-nu/'
|
||||||
|
firstStripUrl = url + 'mein-erster-webcomic/'
|
||||||
|
imageSearch = '//img[d:class("attachment-full")]'
|
||||||
|
prevSearch = '//a[@rel="prev"]'
|
||||||
|
endOfLife = True
|
||||||
lang = 'de'
|
lang = 'de'
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue