Migrate SnafuComics to single-class module.
This commit is contained in:
parent
125c96e9dc
commit
67d0d38100
1 changed files with 33 additions and 110 deletions
|
@ -9,124 +9,47 @@ from ..scraper import _ParserScraper
|
|||
from ..helpers import indirectStarter
|
||||
|
||||
|
||||
class _Snafu(_ParserScraper):
|
||||
class Snafu(_ParserScraper):
|
||||
# Next and Previous are swapped...
|
||||
prevSearch = '//a[@class="next"]'
|
||||
imageSearch = '//div[@class="comicpage"]/img'
|
||||
latestSearch = '//div[@id="feed"]/a'
|
||||
starter = indirectStarter
|
||||
|
||||
def __init__(self, name):
|
||||
super(_Snafu, self).__init__('SnafuComics/' + name)
|
||||
def __init__(self, name, path):
|
||||
super(Snafu, self).__init__('SnafuComics/' + name)
|
||||
self.url = 'http://snafu-comics.com/swmseries/' + path
|
||||
|
||||
def namer(self, image_url, page_url):
|
||||
year, month, name = image_url.rsplit('/', 3)[1:]
|
||||
return "%04s_%02s_%s" % (year, month, name)
|
||||
|
||||
@property
|
||||
def url(self):
|
||||
return 'http://snafu-comics.com/swmseries/' + self.path
|
||||
|
||||
|
||||
class Braindead(_Snafu):
|
||||
path = 'braindead'
|
||||
|
||||
|
||||
class Bunnywith(_Snafu):
|
||||
path = 'bunnywith'
|
||||
|
||||
|
||||
class DeliverUsEvil(_Snafu):
|
||||
path = 'deliverusevil'
|
||||
|
||||
|
||||
class DigitalPurgatory(_Snafu):
|
||||
path = 'digital-purgatory'
|
||||
|
||||
|
||||
class EA(_Snafu):
|
||||
path = 'ea'
|
||||
|
||||
|
||||
class FT(_Snafu):
|
||||
path = 'ft'
|
||||
|
||||
|
||||
class GrimTalesFromDownBelow(_Snafu):
|
||||
path = 'grimtales'
|
||||
|
||||
|
||||
class KOF(_Snafu):
|
||||
path = 'kof'
|
||||
|
||||
|
||||
class MyPanda(_Snafu):
|
||||
path = 'mypanda'
|
||||
|
||||
|
||||
class NarutoHeroesPath(_Snafu):
|
||||
path = 'naruto'
|
||||
|
||||
|
||||
class NewSuperMarioAdventures(_Snafu):
|
||||
path = 'nsma'
|
||||
|
||||
|
||||
class PowerPuffGirls(_Snafu):
|
||||
path = 'powerpuffgirls'
|
||||
|
||||
|
||||
class PSG2(_Snafu):
|
||||
path = 'psg2'
|
||||
|
||||
|
||||
class SatansExcrement(_Snafu):
|
||||
path = 'satansexcrement'
|
||||
|
||||
|
||||
class SF(_Snafu):
|
||||
path = 'sf'
|
||||
|
||||
|
||||
class SkullBoy(_Snafu):
|
||||
path = 'skullboy'
|
||||
|
||||
|
||||
class Snafu(_Snafu):
|
||||
path = 'snafu'
|
||||
|
||||
|
||||
class Soul(_Snafu):
|
||||
path = 'soul'
|
||||
|
||||
|
||||
class Sugar(_Snafu):
|
||||
path = 'sugarbits'
|
||||
|
||||
|
||||
class SureToBeBanD(_Snafu):
|
||||
path = 'stbb'
|
||||
|
||||
|
||||
class TheLeague(_Snafu):
|
||||
path = 'league'
|
||||
|
||||
|
||||
class Tin(_Snafu):
|
||||
path = 'tin'
|
||||
|
||||
|
||||
class Titan(_Snafu):
|
||||
path = 'titan'
|
||||
|
||||
|
||||
class TrunksAndSoto(_Snafu):
|
||||
path = 'trunks-and-soto'
|
||||
|
||||
|
||||
class TW(_Snafu):
|
||||
path = 'tw'
|
||||
|
||||
|
||||
class Zim(_Snafu):
|
||||
path = 'zim'
|
||||
@classmethod
|
||||
def getmodules(cls):
|
||||
return [
|
||||
cls('Braindead', 'braindead'),
|
||||
cls('Bunnywith', 'bunnywith'),
|
||||
cls('DeliverUsEvil', 'deliverusevil'),
|
||||
cls('EA', 'ea'),
|
||||
cls('FT', 'ft'),
|
||||
cls('GrimTalesFromDownBelow', 'grimtales'),
|
||||
cls('KOF', 'kof'),
|
||||
cls('MyPanda', 'mypanda'),
|
||||
cls('NarutoHeroesPath', 'naruto'),
|
||||
cls('NewSuperMarioAdventures', 'nsma'),
|
||||
cls('PowerPuffGirls', 'powerpuffgirls'),
|
||||
# cls('PSG2', 'psg2'), -- Strangely broken
|
||||
cls('SatansExcrement', 'satansexcrement'),
|
||||
cls('SF', 'sf'),
|
||||
cls('SkullBoy', 'skullboy'),
|
||||
cls('Snafu', 'snafu'),
|
||||
cls('Soul', 'soul'),
|
||||
cls('Sugar', 'sugarbits'),
|
||||
cls('SureToBeBanD', 'stbb'),
|
||||
cls('TheLeague', 'league'),
|
||||
cls('Tin', 'tin'),
|
||||
cls('Titan', 'titan'),
|
||||
cls('TrunksAndSoto', 'trunks-and-soto'),
|
||||
cls('TW', 'tw'),
|
||||
cls('Zim', 'zim'),
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue