dosage/dosagelib/plugins/flowerlark.py
Tobias Gruetzmacher 8e1e398a8d Deprecate underscore-prefixed parent classes
This is trying to strike a balance between updating as much existing
classes as possible, but not making the diff too big...
2022-06-06 12:08:32 +02:00

24 lines
721 B
Python

# SPDX-License-Identifier: MIT
# Copyright (C) 2021 Tobias Gruetzmacher
from ..helpers import indirectStarter
from .common import WordPressScraper
class FlowerlarkStudios(WordPressScraper):
starter = indirectStarter
def __init__(self, name, sub):
super().__init__(name)
self.url = 'https://www.flowerlarkstudios.com/comic/%s/' % sub
self.firstStripUrl = self.url
@classmethod
def getmodules(cls):
return (
cls('Ashes', 'prologue/vol-1-ashes'),
cls('EasilyAmused', 'adulting-is-hard/making-a-splash'),
cls('Eryl', 'opening/intro-to-dark-wings'),
cls('NoMoreSavePoints', 'no-more-save-points/mushroom-hopping'),
)