2020-04-18 11:45:44 +00:00
|
|
|
# SPDX-License-Identifier: MIT
|
2024-03-17 20:44:46 +00:00
|
|
|
# SPDX-FileCopyrightText: © 2004 Tristan Seligmann and Jonathan Jacobs
|
|
|
|
# SPDX-FileCopyrightText: © 2012 Bastian Kleineidam
|
|
|
|
# SPDX-FileCopyrightText: © 2015 Tobias Gruetzmacher
|
|
|
|
# SPDX-FileCopyrightText: © 2019 Daniel Ring
|
2013-04-10 16:19:11 +00:00
|
|
|
from re import compile, escape
|
2012-06-20 19:58:13 +00:00
|
|
|
|
2023-06-13 21:46:23 +00:00
|
|
|
from ..scraper import _BasicScraper, _ParserScraper, ParserScraper
|
2020-07-31 20:56:30 +00:00
|
|
|
from ..helpers import indirectStarter, bounceStarter
|
2012-12-04 06:02:40 +00:00
|
|
|
from ..util import tagre
|
2022-06-06 10:08:32 +00:00
|
|
|
from .common import (ComicControlScraper, WordPressScraper, WordPressNavi,
|
|
|
|
WordPressWebcomic)
|
2012-06-20 19:58:13 +00:00
|
|
|
|
|
|
|
|
2012-12-08 20:30:51 +00:00
|
|
|
class Damonk(_BasicScraper):
|
2013-02-04 20:00:26 +00:00
|
|
|
url = 'http://www.damonk.com/'
|
|
|
|
stripUrl = url + 'd/%s.html'
|
2013-04-10 21:57:09 +00:00
|
|
|
firstStripUrl = stripUrl % '20060522'
|
2012-12-08 20:30:51 +00:00
|
|
|
imageSearch = compile(tagre("img", "src", r'(/comics/[^"]+)'))
|
|
|
|
prevSearch = compile(tagre("a", "href", r'(/d/\d+\.html)') +
|
2016-04-10 21:04:34 +00:00
|
|
|
tagre("img", "src", r'/images/previous_day\.gif'))
|
2012-12-08 20:30:51 +00:00
|
|
|
help = 'Index format: yyyymmdd'
|
|
|
|
|
|
|
|
|
2022-06-06 10:08:32 +00:00
|
|
|
class DangerouslyChloe(ComicControlScraper):
|
2013-03-03 20:31:44 +00:00
|
|
|
url = 'http://www.dangerouslychloe.com/'
|
2017-05-14 22:27:28 +00:00
|
|
|
firstStripUrl = url + 'strips-dc/Chapter_1_-_That_damned_girl'
|
2013-03-03 20:31:44 +00:00
|
|
|
|
|
|
|
|
2023-06-13 21:46:23 +00:00
|
|
|
class DarkLegacy(ParserScraper):
|
|
|
|
starter = indirectStarter
|
|
|
|
url = "https://www.darklegacycomics.com"
|
|
|
|
stripUrl = url + '%s'
|
|
|
|
firstStripUrl = stripUrl % '1'
|
|
|
|
imageSearch = '//div[@class="comic narrow"]//img'
|
|
|
|
prevSearch = ('//a[@title="Previous - A"]',
|
|
|
|
'//a[@title="Previous"]')
|
|
|
|
latestSearch = '//div[@class="comic narrow feed"]//a'
|
|
|
|
help = 'Index format: n (unpadded)'
|
|
|
|
|
|
|
|
|
2022-06-06 10:08:32 +00:00
|
|
|
class DarkWhite(WordPressScraper):
|
2019-07-13 03:34:47 +00:00
|
|
|
url = 'https://www.darkwhitecomic.com/'
|
|
|
|
stripUrl = url + 'comic/%s/'
|
|
|
|
firstStripUrl = stripUrl % 'chapter-1-sleep'
|
|
|
|
|
|
|
|
|
2013-08-19 17:18:02 +00:00
|
|
|
class DarthsAndDroids(_BasicScraper):
|
|
|
|
url = 'http://www.darthsanddroids.net/'
|
|
|
|
stripUrl = url + 'episodes/%s.html'
|
|
|
|
firstStripUrl = stripUrl % '0001'
|
2016-04-10 21:04:34 +00:00
|
|
|
prevSearch = compile(tagre("a", "href", r'(/episodes/\d\d\d\d.html)') +
|
|
|
|
'<PREVIOUS')
|
2013-08-19 17:18:02 +00:00
|
|
|
imageSearch = compile(tagre("img", "src", r'(/comics/darths\d\d\d\d\.jpg)'))
|
|
|
|
|
|
|
|
|
2022-05-31 06:40:49 +00:00
|
|
|
class DasLebenIstKeinPonyhof(_ParserScraper):
|
|
|
|
baseUrl = 'https://sarahburrini.com/comic/das-leben-ist-kein-ponyhof/'
|
|
|
|
url = baseUrl + 'und-nu/'
|
|
|
|
firstStripUrl = url + 'mein-erster-webcomic/'
|
|
|
|
imageSearch = '//img[d:class("attachment-full")]'
|
|
|
|
prevSearch = '//a[@rel="prev"]'
|
|
|
|
endOfLife = True
|
2013-03-21 17:33:16 +00:00
|
|
|
lang = 'de'
|
|
|
|
|
|
|
|
|
2022-06-06 10:08:32 +00:00
|
|
|
class DaughterOfTheLilies(ComicControlScraper):
|
2020-09-13 14:25:05 +00:00
|
|
|
url = 'https://www.daughterofthelilies.com/'
|
|
|
|
firstStripUrl = url + 'dotl/part-1-a-girl-with-no-face'
|
|
|
|
|
|
|
|
|
2013-03-06 19:00:30 +00:00
|
|
|
class DeadWinter(_BasicScraper):
|
|
|
|
url = 'http://deadwinter.cc/'
|
|
|
|
stripUrl = url + 'page/%s'
|
|
|
|
firstStripUrl = stripUrl % '1'
|
|
|
|
imageSearch = compile(tagre("img", "src", r"(/static/page/strip/\d+[^']+)", quote="'"))
|
|
|
|
prevSearch = compile(tagre("a", "href", r'(/page/\d+)') + "Previous")
|
|
|
|
help = 'Index format: number'
|
|
|
|
|
|
|
|
|
2017-09-19 10:36:19 +00:00
|
|
|
class Deathbulge(_BasicScraper):
|
|
|
|
url = 'http://www.deathbulge.com/api/comics'
|
2017-11-17 08:49:47 +00:00
|
|
|
imageSearch = compile(r"(/images/comics/[^\.]+\.jpg)")
|
2017-09-19 10:36:19 +00:00
|
|
|
prevSearch = compile(r'"previous":(\d+),')
|
|
|
|
firstStripUrl = url + '/1'
|
2018-05-22 22:54:40 +00:00
|
|
|
|
2017-09-19 10:36:19 +00:00
|
|
|
def getPrevUrl(self, url, data):
|
|
|
|
if data[1] == self.url:
|
|
|
|
data = (data[0], data[1] + '/')
|
|
|
|
return _BasicScraper.getPrevUrl(self, url, data)
|
|
|
|
|
|
|
|
|
2012-06-20 19:58:13 +00:00
|
|
|
class DeepFried(_BasicScraper):
|
2013-02-04 20:00:26 +00:00
|
|
|
url = 'http://www.whatisdeepfried.com/'
|
2013-04-10 16:19:11 +00:00
|
|
|
rurl = escape(url)
|
2013-04-10 21:57:09 +00:00
|
|
|
stripUrl = url + '%s/'
|
|
|
|
firstStripUrl = stripUrl % '2001/09/16/new-world-out-of-order'
|
2013-04-10 16:19:11 +00:00
|
|
|
imageSearch = compile(tagre("img", "src", r'(%scomics/[^"]+)' % rurl))
|
|
|
|
prevSearch = compile(tagre("a", "href", r'(%s[^"]+)' % rurl, after="prev"))
|
2013-04-10 21:57:09 +00:00
|
|
|
help = 'Index format: none'
|
2012-06-20 19:58:13 +00:00
|
|
|
|
|
|
|
|
2022-06-04 09:12:55 +00:00
|
|
|
class DeerMe(_ParserScraper):
|
|
|
|
url = 'https://www.deerme.net/'
|
|
|
|
firstStripUrl = url + 'a.php?b=comic/c001-image/dm-20031121-001-0001'
|
|
|
|
imageSearch = '//div[d:class("ComicImage")]/img'
|
|
|
|
prevSearch = '//a[@rel="prev"]'
|
|
|
|
nextSearch = '//a[@rel="next"]'
|
|
|
|
starter = bounceStarter
|
|
|
|
|
|
|
|
|
2022-06-06 10:08:32 +00:00
|
|
|
class Delve(WordPressScraper):
|
2019-12-31 00:44:19 +00:00
|
|
|
url = 'https://thisis.delvecomic.com/NewWP/'
|
2019-07-13 09:15:14 +00:00
|
|
|
stripUrl = url + 'comic/%s/'
|
|
|
|
firstStripUrl = stripUrl % 'in-too-deep'
|
|
|
|
adult = True
|
|
|
|
maxLen = len('episode999')
|
|
|
|
|
|
|
|
def namer(self, imageUrl, pageUrl):
|
|
|
|
# Fix inconsistent filenames
|
|
|
|
filename = imageUrl.rsplit('/', 1)[-1].rsplit('?', 1)[0]
|
|
|
|
if (pageUrl == self.stripUrl % 'engagement' or
|
|
|
|
pageUrl == self.stripUrl % 'losing-it'):
|
|
|
|
self.maxLen = self.maxLen - 1
|
|
|
|
if ('episode' in filename and
|
|
|
|
len(filename) - len('.jpg') > self.maxLen and
|
|
|
|
filename[self.maxLen] != '-'):
|
|
|
|
filename = filename[:self.maxLen] + '-' + filename[self.maxLen:]
|
|
|
|
return filename
|
|
|
|
|
|
|
|
|
2015-05-26 10:59:25 +00:00
|
|
|
class DemolitionSquad(_ParserScraper):
|
2013-03-19 19:45:59 +00:00
|
|
|
url = 'http://www.demolitionsquad.de/'
|
2014-01-20 18:01:47 +00:00
|
|
|
stripUrl = url + '?comicbeitrag=%s'
|
|
|
|
firstStripUrl = stripUrl % '181'
|
2015-05-26 10:59:25 +00:00
|
|
|
imageSearch = '//img[contains(@src,"uploads/pics/")]'
|
|
|
|
prevSearch = '//img[@name="zuruck"]/..'
|
2014-01-20 18:01:47 +00:00
|
|
|
help = 'Index format: number'
|
2013-03-19 19:45:59 +00:00
|
|
|
lang = 'de'
|
|
|
|
|
|
|
|
|
2016-04-29 22:44:18 +00:00
|
|
|
class DerTodUndDasMaedchen(_ParserScraper):
|
2020-01-09 16:38:13 +00:00
|
|
|
url = ('https://web.archive.org/web/20180106180134/'
|
|
|
|
'http://www.cartoontomb.de/deutsch/tod2.php')
|
2013-03-21 17:33:16 +00:00
|
|
|
stripUrl = url + '?bild=%s.jpg'
|
|
|
|
firstStripUrl = stripUrl % '00_01_01'
|
2016-04-29 22:44:18 +00:00
|
|
|
imageSearch = '//img[contains(@src, "images/tod/teil2")]'
|
|
|
|
prevSearch = u'//a[text()="zur\u00FCck"]'
|
2013-03-21 17:33:16 +00:00
|
|
|
help = 'Index format: nn_nn_nn'
|
|
|
|
lang = 'de'
|
|
|
|
|
|
|
|
|
2022-06-06 10:08:32 +00:00
|
|
|
class DesertFox(WordPressWebcomic):
|
2020-06-19 07:56:16 +00:00
|
|
|
url = 'https://desertfoxcomics.net/'
|
|
|
|
stripUrl = url + 'comics/%s/'
|
2019-09-11 02:50:44 +00:00
|
|
|
firstStripUrl = stripUrl % 'origins-1'
|
|
|
|
|
|
|
|
def namer(self, imageUrl, pageUrl):
|
|
|
|
# Fix inconsistent filenames
|
|
|
|
filename = imageUrl.rsplit('/', 1)[-1]
|
|
|
|
filename = filename.replace('Pg', 'Page').replace('Desert-Fox', '')
|
|
|
|
if 'origins' in pageUrl:
|
|
|
|
filename = filename.replace('Page-', 'Page-0-')
|
|
|
|
return filename
|
|
|
|
|
|
|
|
|
2014-02-18 20:00:19 +00:00
|
|
|
class DieFruehreifen(_BasicScraper):
|
|
|
|
url = 'http://www.die-fruehreifen.de/index.php'
|
|
|
|
stripUrl = url + '?id=%s&order=DESC'
|
|
|
|
firstStripUrl = stripUrl % '1'
|
2014-07-31 19:18:15 +00:00
|
|
|
imageSearch = compile(tagre("img", "src", r'([^"]*/strips/[Ff]rueh_?[Ss]trip_\d+.jpg)'))
|
2016-04-10 21:04:34 +00:00
|
|
|
prevSearch = compile(tagre("a", "href", r"(index\.php\?id=\d+&order=DESC)") +
|
|
|
|
tagre("img", "id", r"naechster"))
|
2014-02-18 20:00:19 +00:00
|
|
|
help = 'Index format: n (unpadded)'
|
|
|
|
lang = 'de'
|
|
|
|
|
|
|
|
|
2016-04-29 22:44:18 +00:00
|
|
|
class DieselSweeties(_ParserScraper):
|
2016-05-05 08:12:03 +00:00
|
|
|
url = 'http://dieselsweeties.com/'
|
2016-09-29 22:15:45 +00:00
|
|
|
stripUrl = url + 'ics/%s'
|
2016-04-29 22:44:18 +00:00
|
|
|
firstStripUrl = stripUrl % '1'
|
|
|
|
imageSearch = '//img[@class="xomic"]'
|
|
|
|
prevSearch = '//div[@id="prev"]//a[contains(text(), "previous")]'
|
2016-05-16 21:16:29 +00:00
|
|
|
latestSearch = prevSearch
|
|
|
|
starter = indirectStarter
|
2016-04-29 22:44:18 +00:00
|
|
|
help = 'Index format: n (unpadded)'
|
|
|
|
|
|
|
|
|
|
|
|
class DieselSweetiesOld(_ParserScraper):
|
2016-05-05 08:12:03 +00:00
|
|
|
url = 'http://dieselsweeties.com/archive/'
|
2016-04-29 22:44:18 +00:00
|
|
|
stripUrl = url + '%s'
|
2013-04-10 21:57:09 +00:00
|
|
|
firstStripUrl = stripUrl % '1'
|
2016-04-29 22:44:18 +00:00
|
|
|
imageSearch = '//img[contains(@src, "/hstrips/")]'
|
|
|
|
prevSearch = '//a[contains(@title, "previous")]'
|
2013-03-06 19:21:10 +00:00
|
|
|
help = 'Index format: n (unpadded)'
|
2016-04-29 22:44:18 +00:00
|
|
|
endOfLife = True
|
|
|
|
|
|
|
|
def starter(self):
|
|
|
|
return self.stripUrl % '4000'
|
2013-03-06 19:21:10 +00:00
|
|
|
|
2016-04-21 06:20:49 +00:00
|
|
|
def namer(self, image_url, page_url):
|
|
|
|
index = int(image_url.split('/')[-1].split('.')[0])
|
|
|
|
return 'sw%02d' % index
|
2013-03-06 19:21:10 +00:00
|
|
|
|
|
|
|
|
2016-05-15 23:21:23 +00:00
|
|
|
class Dilbert(_ParserScraper):
|
2020-01-12 21:36:24 +00:00
|
|
|
url = 'https://dilbert.com/'
|
2016-05-05 08:12:03 +00:00
|
|
|
stripUrl = url + 'strip/%s'
|
2013-03-19 19:45:18 +00:00
|
|
|
firstStripUrl = stripUrl % '1989-04-16'
|
2016-04-13 18:01:51 +00:00
|
|
|
starter = indirectStarter
|
2020-07-31 20:56:30 +00:00
|
|
|
prevSearch = '//div[d:class("nav-left")]/a'
|
|
|
|
imageSearch = '//img[d:class("img-comic")]'
|
2016-05-15 23:21:23 +00:00
|
|
|
latestSearch = '//a[@class="img-comic-link"]'
|
2013-03-06 19:21:10 +00:00
|
|
|
help = 'Index format: yyyy-mm-dd'
|
2013-03-06 19:21:20 +00:00
|
|
|
|
2016-04-21 06:20:49 +00:00
|
|
|
def namer(self, image_url, page_url):
|
|
|
|
name = page_url.rsplit("/", 1)[1]
|
2015-01-16 18:05:53 +00:00
|
|
|
return "%s" % name
|
2013-03-06 19:21:10 +00:00
|
|
|
|
|
|
|
|
2022-06-06 10:08:32 +00:00
|
|
|
class DocRat(WordPressWebcomic):
|
2019-12-31 00:44:19 +00:00
|
|
|
url = 'https://www.docrat.com.au/'
|
2019-07-06 19:49:40 +00:00
|
|
|
stripUrl = url + 'comic/%s/'
|
|
|
|
firstStripUrl = stripUrl % 'begin-with-eye-contact'
|
|
|
|
|
|
|
|
def namer(self, imageUrl, pageUrl):
|
|
|
|
# Fix inconsistent filenames
|
|
|
|
filename = imageUrl.rsplit('/', 1)[-1].rsplit('?', 1)[0]
|
|
|
|
filename = filename.replace('2006-08-01', 'DR0027')
|
|
|
|
filename = filename.replace('2006-07-31', 'DR0026')
|
|
|
|
return filename
|
|
|
|
|
|
|
|
|
2016-10-31 05:57:47 +00:00
|
|
|
class DoemainOfOurOwn(_ParserScraper):
|
2013-02-04 20:00:26 +00:00
|
|
|
url = 'http://www.doemain.com/'
|
2019-07-10 05:53:16 +00:00
|
|
|
stripUrl = url + 'html/%s.html'
|
|
|
|
firstStripUrl = stripUrl % '1999/1999-04-24'
|
|
|
|
imageSearch = '//img[contains(@src, "strips/")]'
|
2016-10-31 05:57:47 +00:00
|
|
|
prevSearch = '//a[img[@alt="Previous Strip"]]'
|
|
|
|
endOfLife = True
|
2012-06-20 19:58:13 +00:00
|
|
|
help = 'Index format: yyyy-mm-dd'
|
|
|
|
|
2019-07-10 05:53:16 +00:00
|
|
|
def namer(self, imageUrl, pageUrl):
|
|
|
|
# Fix date formatting
|
|
|
|
filename = imageUrl.rsplit('/', 1)[-1]
|
|
|
|
if len(filename) > 6 and filename[0:6].isdigit():
|
|
|
|
month = filename[0:2]
|
|
|
|
day = filename[2:4]
|
|
|
|
year = ('19' if filename[4] == '9' else '20') + filename[4:6]
|
|
|
|
filename = '%s-%s-%s%s' % (year, month, day, filename[6:])
|
|
|
|
return filename
|
|
|
|
|
2012-06-20 19:58:13 +00:00
|
|
|
|
2022-06-06 10:08:32 +00:00
|
|
|
class DoesNotPlayWellWithOthers(WordPressNavi):
|
2021-08-05 05:26:50 +00:00
|
|
|
url = 'http://www.doesnotplaywellwithothers.com/'
|
|
|
|
stripUrl = url + 'comic/%s'
|
|
|
|
firstStripUrl = stripUrl % 'pwc-0001'
|
|
|
|
adult = True
|
|
|
|
|
|
|
|
|
2019-07-13 03:41:06 +00:00
|
|
|
class DoghouseDiaries(_ParserScraper):
|
2013-03-15 06:04:19 +00:00
|
|
|
url = 'http://thedoghousediaries.com/'
|
|
|
|
stripUrl = url + '%s'
|
2015-04-15 16:51:45 +00:00
|
|
|
firstStripUrl = stripUrl % '34'
|
2019-07-13 03:41:06 +00:00
|
|
|
imageSearch = '//img[@class="imgcomic"]'
|
|
|
|
textSearch = imageSearch + '/@title'
|
|
|
|
prevSearch = '//a[@id="previouslink"]'
|
|
|
|
nextSearch = '//a[@id="nextlink"]'
|
|
|
|
starter = bounceStarter
|
2013-03-15 06:04:19 +00:00
|
|
|
help = 'Index format: number'
|
|
|
|
|
2019-07-13 03:41:06 +00:00
|
|
|
def namer(self, imageUrl, pageUrl):
|
|
|
|
return pageUrl.rsplit('/', 1)[-1] + '.' + imageUrl.rsplit('.', 1)[-1]
|
|
|
|
|
2013-03-15 06:04:19 +00:00
|
|
|
|
2019-06-13 06:14:39 +00:00
|
|
|
class DominicDeegan(_ParserScraper):
|
2019-12-31 00:44:19 +00:00
|
|
|
url = 'https://www.dominic-deegan.com/'
|
2019-06-13 06:14:39 +00:00
|
|
|
stripUrl = url + 'comic/%s/'
|
|
|
|
firstStripUrl = stripUrl % '0001-20020521'
|
|
|
|
imageSearch = '//img[contains(@class, "wp-post-image")]'
|
|
|
|
prevSearch = '//a[@title="Prev"]'
|
|
|
|
help = 'Index format: ####-yyyymmdd'
|
2013-03-06 19:21:10 +00:00
|
|
|
|
|
|
|
|
2016-10-31 05:57:47 +00:00
|
|
|
class DorkTower(_ParserScraper):
|
2013-03-06 19:21:10 +00:00
|
|
|
url = 'http://www.dorktower.com/'
|
2016-10-31 05:57:47 +00:00
|
|
|
firstStripUrl = url + '1997/01/01/shadis-magazine-strip-1/'
|
2020-07-31 20:56:30 +00:00
|
|
|
imageSearch = '//div[d:class("entry-content")]//a/img'
|
|
|
|
prevSearch = '//a[d:class("btn")][text()="Previous"]'
|
2013-03-06 19:21:10 +00:00
|
|
|
|
|
|
|
|
2019-12-26 21:03:18 +00:00
|
|
|
class DoomsdayMyDear(_ParserScraper):
|
|
|
|
url = 'http://doomsdaymydear.com/'
|
2020-07-31 20:56:30 +00:00
|
|
|
imageSearch = '//img[d:class("attachment-full")]'
|
|
|
|
prevSearch = '//a[d:class("previous-webcomic-link")]'
|
2019-12-26 21:03:18 +00:00
|
|
|
|
|
|
|
|
2022-06-06 10:08:32 +00:00
|
|
|
class Draconia(WordPressWebcomic):
|
2020-01-28 06:55:32 +00:00
|
|
|
url = 'https://www.draconiachronicles.com/'
|
|
|
|
stripUrl = url + 'comic/%s/'
|
|
|
|
firstStripUrl = stripUrl % 'chapter-1-page-1'
|
|
|
|
|
|
|
|
|
2012-06-20 19:58:13 +00:00
|
|
|
class Dracula(_BasicScraper):
|
2013-02-04 20:00:26 +00:00
|
|
|
url = 'http://draculacomic.net/'
|
|
|
|
stripUrl = url + 'comic.php?comicID=%s'
|
2013-04-10 21:57:09 +00:00
|
|
|
firstStripUrl = stripUrl % '0'
|
2012-11-20 17:53:53 +00:00
|
|
|
imageSearch = compile(tagre("img", "src", r'(comics/[^"]+)'))
|
2012-06-20 19:58:13 +00:00
|
|
|
prevSearch = compile(r' <a class="archivelink" href="(.+?)">« Prev</a>')
|
|
|
|
help = 'Index format: nnn'
|
|
|
|
|
|
|
|
|
2019-06-20 04:39:19 +00:00
|
|
|
class DreamKeepers(_ParserScraper):
|
|
|
|
url = 'http://www.dreamkeeperscomic.com/GNSaga.php'
|
|
|
|
stripUrl = url + '?pg=%s'
|
|
|
|
firstStripUrl = stripUrl % '1'
|
|
|
|
imageSearch = '//img[contains(@src, "GNSagapages")]'
|
|
|
|
prevSearch = '//a[@id="prev"]'
|
|
|
|
help = 'Index format: n'
|
|
|
|
|
|
|
|
|
2016-09-29 22:15:45 +00:00
|
|
|
class DreamKeepersPrelude(_ParserScraper):
|
2013-02-04 20:00:26 +00:00
|
|
|
url = 'http://www.dreamkeeperscomic.com/Prelude.php'
|
|
|
|
stripUrl = url + '?pg=%s'
|
2019-06-20 04:39:19 +00:00
|
|
|
firstStripUrl = stripUrl % '0001'
|
2016-09-29 22:15:45 +00:00
|
|
|
imageSearch = '//div[@class="Preludecomic"]/table//a/img'
|
|
|
|
prevSearch = '//a[@id="prev"]'
|
2012-06-20 19:58:13 +00:00
|
|
|
help = 'Index format: n'
|
|
|
|
|
|
|
|
|
2024-03-17 20:44:46 +00:00
|
|
|
class DresdenCodak(ParserScraper):
|
2013-02-04 20:00:26 +00:00
|
|
|
url = 'http://dresdencodak.com/'
|
2013-04-10 21:57:09 +00:00
|
|
|
firstStripUrl = url + '2007/02/08/pom/'
|
2020-07-31 20:56:30 +00:00
|
|
|
imageSearch = '//section[d:class("entry-content")]//img[d:class("aligncenter")]'
|
2017-05-14 22:27:28 +00:00
|
|
|
prevSearch = '//a[img[contains(@src, "prev")]]'
|
2020-07-31 20:56:30 +00:00
|
|
|
latestSearch = '//a[d:class("tc-grid-bg-link")]'
|
2016-04-13 18:01:51 +00:00
|
|
|
starter = indirectStarter
|
2012-06-20 19:58:13 +00:00
|
|
|
|
2012-11-26 06:13:32 +00:00
|
|
|
|
2020-01-09 16:38:13 +00:00
|
|
|
class DrFun(_ParserScraper):
|
|
|
|
baseUrl = ('https://web.archive.org/web/20180726145737/'
|
|
|
|
'http://www.ibiblio.org/Dave/')
|
2013-04-13 18:58:00 +00:00
|
|
|
stripUrl = baseUrl + 'ar%s.htm'
|
2020-01-09 16:38:13 +00:00
|
|
|
url = stripUrl % '00502'
|
2013-04-10 21:57:09 +00:00
|
|
|
firstStripUrl = stripUrl % '00001'
|
2020-01-09 16:38:13 +00:00
|
|
|
imageSearch = '//a[contains(@href, "Dr-Fun/df")]'
|
2013-04-10 21:57:09 +00:00
|
|
|
multipleImagesPerStrip = True
|
2020-01-09 16:38:13 +00:00
|
|
|
prevSearch = '//a[contains(text(), "Previous Week")]'
|
2013-04-29 18:29:56 +00:00
|
|
|
endOfLife = True
|
2020-01-09 16:38:13 +00:00
|
|
|
help = 'Index format: nnnnn'
|
2013-04-10 21:57:09 +00:00
|
|
|
|
|
|
|
|
2024-05-14 20:47:33 +00:00
|
|
|
class Drive(ParserScraper):
|
2015-01-26 09:21:24 +00:00
|
|
|
url = 'http://www.drivecomic.com/'
|
2024-05-14 20:47:33 +00:00
|
|
|
firstStripUrl = url + 'comic/act-1-pg-001/'
|
|
|
|
imageSearch = ('//div[@id="unspliced-comic"]//img/@data-src-img',
|
|
|
|
'//div[@id="unspliced-comic"]//picture//img')
|
|
|
|
prevSearch = '//a[d:class("previous-comic")]'
|
2015-01-26 09:21:24 +00:00
|
|
|
|
|
|
|
|
2015-07-17 23:21:29 +00:00
|
|
|
class DrMcNinja(_ParserScraper):
|
2013-03-25 18:47:44 +00:00
|
|
|
url = 'http://drmcninja.com/'
|
|
|
|
stripUrl = url + 'archives/comic/%s/'
|
|
|
|
firstStripUrl = stripUrl % '0p1'
|
2015-07-17 23:21:29 +00:00
|
|
|
css = True
|
|
|
|
imageSearch = 'div#comic img'
|
|
|
|
prevSearch = 'a.prev'
|
|
|
|
help = 'Index format: {episode}p{page}'
|
2013-03-25 18:47:44 +00:00
|
|
|
|
|
|
|
|
2020-09-27 18:56:26 +00:00
|
|
|
class Drowtales(_ParserScraper):
|
|
|
|
url = 'http://www.drowtales.com/mainarchive.php'
|
2013-03-06 19:21:10 +00:00
|
|
|
stripUrl = url + '?sid=%s'
|
2013-04-10 21:57:09 +00:00
|
|
|
firstStripUrl = stripUrl % '4192'
|
2020-09-27 18:56:26 +00:00
|
|
|
imageSearch = '//div[@id="content_middle"]//img'
|
|
|
|
prevSearch = '//a[@id="link_prev_top"]'
|
2013-03-06 19:21:10 +00:00
|
|
|
help = 'Index format: number'
|
2013-02-06 21:08:36 +00:00
|
|
|
|
|
|
|
|
2022-06-06 10:08:32 +00:00
|
|
|
class DungeonsAndDenizens(WordPressNavi):
|
2021-02-02 09:52:22 +00:00
|
|
|
url = ('https://web.archive.org/web/20160308001834/'
|
|
|
|
'http://dungeond.com/')
|
|
|
|
stripUrl = url + '%s/'
|
|
|
|
firstStripUrl = stripUrl % '2005/08/23/08232005'
|
|
|
|
endOfLife = True
|
|
|
|
|
|
|
|
|
2022-06-06 10:08:32 +00:00
|
|
|
class DumbingOfAge(WordPressNavi):
|
2013-02-06 21:08:36 +00:00
|
|
|
url = 'http://www.dumbingofage.com/'
|
|
|
|
stripUrl = url + '%s/'
|
|
|
|
help = 'Index format: yyyy/comic/book-num/seriesname/stripname'
|