diff --git a/fanficfare/adapters/__init__.py b/fanficfare/adapters/__init__.py index 42f1f688..248d628d 100644 --- a/fanficfare/adapters/__init__.py +++ b/fanficfare/adapters/__init__.py @@ -139,7 +139,6 @@ from . import adapter_novelfull from . import adapter_worldofxde from . import adapter_psychficcom from . import adapter_deviantartcom -from . import adapter_merengohu from . import adapter_readonlymindcom from . import adapter_wwwsunnydaleafterdarkcom diff --git a/fanficfare/adapters/adapter_merengohu.py b/fanficfare/adapters/adapter_merengohu.py deleted file mode 100644 index 2f09cf24..00000000 --- a/fanficfare/adapters/adapter_merengohu.py +++ /dev/null @@ -1,54 +0,0 @@ -# -*- coding: utf-8 -*- - -# Copyright 2022 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. -# - -# Software: eFiction -from __future__ import absolute_import -from .base_efiction_adapter import BaseEfictionAdapter - -class MerengoHuAdapter(BaseEfictionAdapter): - - @classmethod - def getProtocol(self): - return "https" - - @staticmethod - def getSiteDomain(): - return 'merengo.hu' - - @classmethod - def getSiteAbbrev(self): - return 'merengo' - - @classmethod - def getDateFormat(self): - return "%Y.%m.%d" - - @classmethod - def getBacktoIndex(self): - return 'Vissza az indexhez' - - def extractChapterUrlsAndMetadata(self): - ## merengo.hu has a custom 18 consent click through - self.get_request(self.getUrlForPhp('tizennyolc.php')+'?consent=true') - - ## Call super of extractChapterUrlsAndMetadata(). - ## base_efiction leaves the soup in self.html. - return super(MerengoHuAdapter, self).extractChapterUrlsAndMetadata() - -def getClass(): - return MerengoHuAdapter -