Create adapter_storyroomcom.py

Add support for WPC/WLPC/SOL sub-site "soryroom.com" which replaces "finestories.com"
This commit is contained in:
Brian 2025-04-29 19:49:15 -07:00 committed by GitHub
parent 6de50509ed
commit b976439669
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,40 @@
# -*- coding: utf-8 -*-
# Copyright 2013 Fanficdownloader team, 2018 FanFicFare team
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
from __future__ import absolute_import
import logging
logger = logging.getLogger(__name__)
# py2 vs py3 transition
from .adapter_storiesonlinenet import StoriesOnlineNetAdapter
def getClass():
return StoryRoomComAdapter
# Class name has to be unique. Our convention is camel case the
# sitename with Adapter at the end. www is skipped.
class StoryRoomComAdapter(StoriesOnlineNetAdapter):
@classmethod
def getSiteAbbrev(cls):
return 'stryrm'
@staticmethod # must be @staticmethod, don't remove it.
def getSiteDomain():
# The site domain. Does have www here, if it uses it.
return 'storyroom.com'