2016-05-20 23:18:42 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
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
|
2017-05-21 23:17:05 +00:00
|
|
|
# Copyright (C) 2015-2017 Tobias Gruetzmacher
|
2016-05-20 23:18:42 +00:00
|
|
|
|
|
|
|
from __future__ import absolute_import, division, print_function
|
2012-12-12 16:41:29 +00:00
|
|
|
|
2017-05-21 23:17:05 +00:00
|
|
|
from .common import _WordPressScraper, _WPNavi
|
2016-05-20 23:18:42 +00:00
|
|
|
|
|
|
|
|
2017-05-21 23:17:05 +00:00
|
|
|
class PetiteSymphony(_WPNavi):
|
2016-05-20 23:18:42 +00:00
|
|
|
multipleImagesPerStrip = True
|
|
|
|
help = 'Index format: named number'
|
|
|
|
|
|
|
|
def __init__(self, name):
|
|
|
|
super(PetiteSymphony, self).__init__('PetiteSymphony/' +
|
|
|
|
name.capitalize())
|
|
|
|
self.url = 'http://%s.petitesymphony.com/' % name
|
|
|
|
self.stripUrl = self.url + 'comic/%s'
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def getmodules(cls):
|
2016-10-31 06:16:10 +00:00
|
|
|
return (
|
2016-05-20 23:18:42 +00:00
|
|
|
cls("knuckleup"),
|
|
|
|
cls("sangria"),
|
2016-10-31 06:16:10 +00:00
|
|
|
)
|
2016-05-20 23:18:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ComicsBreak(_WordPressScraper):
|
|
|
|
|
|
|
|
def __init__(self, name):
|
|
|
|
super(ComicsBreak, self).__init__('ComicsBreak/' + name)
|
|
|
|
self.url = 'http://%s.comicsbreak.com/' % name.lower()
|
2012-12-12 16:41:29 +00:00
|
|
|
|
2016-05-20 23:18:42 +00:00
|
|
|
@classmethod
|
|
|
|
def getmodules(cls):
|
2016-10-31 06:16:10 +00:00
|
|
|
return (
|
2016-05-20 23:18:42 +00:00
|
|
|
cls("Djandora"),
|
|
|
|
cls("Generation17"),
|
2016-10-31 06:16:10 +00:00
|
|
|
)
|