Remove comics no longer available on the web

This commit is contained in:
Techwolf 2021-12-24 15:19:16 -08:00
parent 517de17c17
commit 78ae0451c9
7 changed files with 9 additions and 41 deletions

View file

@ -577,7 +577,6 @@ class ComicFury(_ParserScraper):
cls('KingdomOfTheDinosaurs', 'dinosaurkingdom'),
cls('KingdomPrettyCure', 'kingdomprettycure'),
cls('KirbyVsShyGuy', 'kvsg'),
cls('Kitsune', 'kitsune'),
cls('KMLsSticks', 'kmlssticks'),
cls('KnavesEnd', 'knavesend'),
cls('KnightGuy', 'knightguy'),
@ -801,8 +800,6 @@ class ComicFury(_ParserScraper):
cls('RequiemsGate', 'requiemsgate'),
cls('ReSetArt', 'resetfanarts'),
cls('ResidentWeirdo', 'residentweirdo'),
cls('ResNullius', 'resnullius'),
cls('ResNulliusCS', 'resnulliuscs'),
cls('ReturnOfWonderland', 'returnofwonderland'),
cls('Revive', 'revive'),
cls('RexAfterDark', 'rexafterdark'),

View file

@ -617,12 +617,15 @@ class Removed(Scraper):
cls('ComicFury/GreenerGrass'),
cls('ComicFury/HelloWanderingStar'),
cls('ComicFury/Hodgemosh'),
cls('ComicFury/Kitsune'),
cls('ComicFury/LaszloAndEdgar'),
cls('ComicFury/MegamanComic'),
cls('ComicFury/PatchworkPeople'),
cls('ComicFury/PornographyInFiveActs'),
cls('ComicFury/PoussireDeFe'),
cls('ComicFury/RED'),
cls('ComicFury/ResNullius'),
cls('ComicFury/ResNulliusCS'),
cls('ComicFury/Seed'),
cls('ComicFury/TheAcryden'),
cls('ComicFury/TheHourlyComic'),
@ -955,6 +958,7 @@ class Removed(Scraper):
cls('MangaDex/HeavensDesignTeam', 'legal'),
cls('MangaDex/SPYxFAMILY', 'legal'),
cls('Ryugou'),
cls('SeelPeel'),
cls('SmackJeeves/20TimesKirby'),
cls('SmackJeeves/2Kingdoms'),
cls('SmackJeeves/355Days'),
@ -1521,11 +1525,16 @@ class Removed(Scraper):
cls('Shivae/CafeAnime'),
cls('Shivae/Extras'),
cls('SnafuComics/Titan'),
cls('StudioKhimera/Eorah', 'mov'),
cls('StuffNoOneToldMe'),
cls('TaleOfTenThousand'),
cls('TheCyantianChronicles/CookieCaper'),
cls('TheCyantianChronicles/Pawprints'),
cls('VGCats/Adventure'),
cls('VGCats/Super'),
cls('VictimsOfTheSystem'),
cls('WebDesignerCOTW'),
cls('WintersLight'),
)

View file

@ -156,13 +156,6 @@ class Science(_ParserScraper):
endOfLife = True
class SeelPeel(_WPNaviIn):
url = 'https://seelpeel.com/'
stripUrl = url + 'comic/%s/'
firstStripUrl = stripUrl % 'seelpeel-goes-live'
multipleImagesPerStrip = True
class SequentialArt(_ParserScraper):
url = 'https://www.collectedcurios.com/sequentialart.php'
stripUrl = url + '?s=%s'

View file

@ -43,7 +43,6 @@ class StudioKhimera(_ParserScraper):
@classmethod
def getmodules(cls):
return (
cls('Eorah', 'eorah'),
cls('Mousechievous', 'mousechievous'),
)

View file

@ -23,14 +23,6 @@ class TailsAndTactics(_ParserScraper):
prevSearch = '//a[text()=" Back"]'
class TaleOfTenThousand(_ParserScraper):
url = 'http://www.t10k.club/'
stripUrl = url + 'comic/%s'
firstStripUrl = stripUrl % '1-01_00'
imageSearch = '//article[@id="comic"]//img'
prevSearch = '//a[d:class("prev")]'
class TekMage(_WPNavi):
url = 'https://tekmagecomic.com/'
stripUrl = url + 'comic/%s/'

View file

@ -40,20 +40,6 @@ class VGCats(_ParserScraper):
help = 'Index format: n (unpadded)'
class VGCatsAdventure(VGCats):
name = 'VGCats/Adventure'
url = 'http://www.vgcats.com/ffxi/'
stripUrl = url + '?strip_id=%s'
imageSearch = '//p/img[contains(@src, "images/")]'
class VGCatsSuper(VGCats):
name = 'VGCats/Super'
url = 'http://www.vgcats.com/super/'
stripUrl = url + '?strip_id=%s'
imageSearch = '//p/img[contains(@src, "images/")]'
class VickiFox(_ParserScraper):
url = 'http://www.vickifox.com/comic/strip'
stripUrl = url + '?id=%s'

View file

@ -133,14 +133,6 @@ class WildeLife(_ComicControlScraper):
firstStripUrl = stripUrl % '1'
class WintersLight(_ParserScraper):
url = 'https://winterslight.anaria.net/'
stripUrl = url + 'comic/%s'
firstStripUrl = stripUrl % 'winterslight00'
imageSearch = '//img[contains(@src, "comic/pages/")]'
prevSearch = '//a[contains(text(), "Previous")]'
class Wonderella(_BasicScraper):
url = 'http://nonadventures.com/'
rurl = escape(url)