2020-04-18 11:45:44 +00:00
|
|
|
# SPDX-License-Identifier: MIT
|
2016-10-28 22:21:41 +00:00
|
|
|
# Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs
|
2014-01-05 15:50:57 +00:00
|
|
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
2022-06-06 10:08:32 +00:00
|
|
|
# Copyright (C) 2015-2022 Tobias Gruetzmacher
|
2020-01-13 06:34:05 +00:00
|
|
|
# Copyright (C) 2019-2020 Daniel Ring
|
2022-06-06 10:08:32 +00:00
|
|
|
from ..scraper import ParserScraper
|
2013-03-11 20:50:49 +00:00
|
|
|
|
2016-05-20 23:18:42 +00:00
|
|
|
# Comicgenesis has a lot of comics, but most of them are disallowed by
|
|
|
|
# robots.txt
|
2016-05-15 23:05:18 +00:00
|
|
|
|
2013-03-11 20:50:49 +00:00
|
|
|
|
2022-06-06 10:08:32 +00:00
|
|
|
class ComicGenesis(ParserScraper):
|
2016-05-20 23:18:42 +00:00
|
|
|
multipleImagesPerStrip = True
|
2017-02-27 17:20:54 +00:00
|
|
|
imageSearch = '//img[contains(@src, "/comics/")]'
|
|
|
|
prevSearch = (
|
|
|
|
'//a[img/@alt="Previous comic"]',
|
|
|
|
'//a[text()="Previous comic"]',
|
|
|
|
)
|
2016-05-20 23:18:42 +00:00
|
|
|
help = 'Index format: yyyymmdd'
|
2013-03-11 20:50:49 +00:00
|
|
|
|
2017-02-27 17:20:54 +00:00
|
|
|
def __init__(self, name, sub=None, last=None, baseUrl=None, lang=None):
|
2022-06-06 10:08:32 +00:00
|
|
|
super().__init__('ComicGenesis/' + name)
|
2016-05-20 23:18:42 +00:00
|
|
|
|
|
|
|
if sub:
|
|
|
|
baseUrl = 'http://%s.comicgenesis.com/' % sub
|
|
|
|
|
|
|
|
self.stripUrl = baseUrl + 'd/%s.html'
|
|
|
|
if last:
|
|
|
|
self.url = self.stripUrl % last
|
|
|
|
self.endOfLife = True
|
|
|
|
else:
|
|
|
|
self.url = baseUrl
|
2013-03-11 20:50:49 +00:00
|
|
|
|
2017-02-27 17:20:54 +00:00
|
|
|
if lang:
|
|
|
|
self.lang = lang
|
|
|
|
|
2016-05-20 23:18:42 +00:00
|
|
|
@classmethod
|
|
|
|
def getmodules(cls):
|
2017-02-27 17:20:54 +00:00
|
|
|
return (
|
2016-05-20 23:18:42 +00:00
|
|
|
cls('AAAAA', 'aaaaa'),
|
|
|
|
cls('AdventuresofKiltman', 'kiltman'),
|
|
|
|
cls('AmorModerno', 'amormoderno'),
|
|
|
|
cls('AnythingButRealLife', 'anythingbutreallife'),
|
|
|
|
cls('Ardra', 'ardra'),
|
|
|
|
cls('Artwork', 'artwork'),
|
|
|
|
cls('BabeintheWoods', 'babeinthewoods'),
|
|
|
|
cls('BackwaterPlanet', 'bobthespirit'),
|
|
|
|
cls('BendyStrawVampires', 'bsvampires'),
|
|
|
|
cls('BlindSight', 'blindsight'),
|
|
|
|
cls('BreakingtheDoldrum', 'breakingthedoldrum'),
|
2017-02-27 17:20:54 +00:00
|
|
|
cls('BrotherSwan', 'warlordofnoodles'),
|
2016-05-20 23:18:42 +00:00
|
|
|
cls('Candi', baseUrl='http://candicomics.com/'),
|
|
|
|
cls('CorporateLife', 'corporatelife'),
|
|
|
|
cls('DarkWelkin', 'darkwelkin'),
|
2017-02-27 17:20:54 +00:00
|
|
|
cls('DeepBlue', 'gjbivin', last='20131109'),
|
2016-05-20 23:18:42 +00:00
|
|
|
cls('DemonEater', 'demoneater'),
|
2019-06-22 05:32:50 +00:00
|
|
|
cls('Dissonance', 'dissonance'),
|
2016-05-20 23:18:42 +00:00
|
|
|
cls('DoodleDiaries', 'doodlediaries'),
|
|
|
|
cls('DormSweetDorm', 'dormsweetdorm'),
|
|
|
|
cls('DoubleyouTeeEff', 'doubleyouteeeff'),
|
|
|
|
cls('DragonsBane', 'jasonwhitewaterz'),
|
|
|
|
cls('Dreamaniac', 'dreamaniaccomic'),
|
|
|
|
cls('ElnifiChronicles', 'elnifichronicles'),
|
|
|
|
cls('EvesApple', 'evesapple'),
|
|
|
|
cls('FancyThat', 'fancythat'),
|
|
|
|
cls('FantasyQwest', 'creatorauthorman'),
|
|
|
|
cls('Fantazine', 'fantazin'),
|
|
|
|
cls('Flounderville', 'flounderville'),
|
|
|
|
cls('GEM', 'keltzy'),
|
|
|
|
cls('Gonefor300days', 'g4300d'),
|
|
|
|
cls('ImpendingDoom', 'impending'),
|
|
|
|
cls('InANutshell', 'nutshellcomics'),
|
|
|
|
cls('KernyMantisComics', 'kernymantis'),
|
|
|
|
cls('KitsuneJewel', 'kitsunejewel'),
|
|
|
|
cls('KittyCattyGames', 'kittycattygames'),
|
|
|
|
cls('KiwiDayN', 'kiwidayn'),
|
|
|
|
cls('KungFounded', 'kungfounded'),
|
|
|
|
cls('LabBratz', 'labbratz'),
|
|
|
|
cls('Laserwing', 'laserwing'),
|
|
|
|
cls('LumiasKingdom', 'lumia'),
|
|
|
|
cls('Majestic7', 'majestic7'),
|
|
|
|
cls('MaximumWhimsy', 'maximumwhimsy'),
|
2017-02-27 17:20:54 +00:00
|
|
|
cls('MenschUnsererZeitGerman', 'muz', lang='de', last='20090630'),
|
|
|
|
cls('MenschUnsererZeit', 'rabe', last='20090630'),
|
2016-05-20 23:18:42 +00:00
|
|
|
cls('MoonCrest24', 'mooncrest', last='20121117'),
|
|
|
|
cls('Mushian', 'tentoumushi'),
|
|
|
|
cls('NightwolfCentral', 'nightwolfcentral'),
|
|
|
|
cls('NoneMoreComic', 'nonemore'),
|
2017-02-27 17:20:54 +00:00
|
|
|
cls('NoTimeForLife', 'randyraven', last='20100510'),
|
|
|
|
cls('OcculTango', 'occultango'),
|
2016-05-20 23:18:42 +00:00
|
|
|
cls('ODCKS', 'odcks'),
|
|
|
|
cls('OfDoom', 'ofdoom'),
|
|
|
|
cls('OpportunityofaLifetime', 'carpathia'),
|
|
|
|
cls('Orbz', 'orbz'),
|
|
|
|
cls('OwMySanity', 'owmysanity'),
|
|
|
|
cls('PhantomThesis', 'phantomthesis'),
|
|
|
|
cls('ProfessorSaltinesAstrodynamicDirigible', 'drsaltine'),
|
|
|
|
cls('PsychicDyslexiaInstitute', 'pdi'),
|
|
|
|
cls('PublicidadeEnganosa', 'publicidadeenganosa'),
|
|
|
|
cls('RandomAxeOfKindness', 'randomaxe'),
|
|
|
|
cls('SalemUncommons', 'salemuncommons'),
|
|
|
|
cls('SamandElisAdventures', 'sameliadv'),
|
|
|
|
cls('SarahZero', 'plughead'),
|
|
|
|
cls('SixByNineCollege', 'sixbyninecollege'),
|
|
|
|
cls('SpoononHighandFireontheMountian', 'spoon'),
|
|
|
|
cls('SynapticMisfires', 'synapticmisfires'),
|
|
|
|
cls('TakingStock', 'mapaghimagsik'),
|
|
|
|
cls('TemplarArizona', 'templaraz'),
|
|
|
|
cls('TheAdventuresofKaniraBaxter', 'kanirabaxter'),
|
|
|
|
cls('TheAdventuresofVindibuddSuperheroInTraining', 'vindibudd', last='20070720'),
|
|
|
|
cls('TheEasyBreather', 'easybreather'),
|
|
|
|
cls('TheMisadventuresofOkk', 'okk'),
|
2017-02-27 17:20:54 +00:00
|
|
|
cls('ThePath', 'thepath', '20081226'),
|
2016-05-20 23:18:42 +00:00
|
|
|
cls('TheTalesofKalduras', 'kalduras'),
|
|
|
|
cls('Unconventional', 'unconventional'),
|
|
|
|
cls('WarMageNC17', 'warmage'),
|
|
|
|
cls('WebcomicTheWebcomicWebcomicWebcomicWebcomic', 'dannormnsanidey'),
|
|
|
|
cls('WhatYouDontSee', 'phantomlady4'),
|
|
|
|
cls('Wierdman', 'asa'),
|
2017-02-27 17:20:54 +00:00
|
|
|
)
|