diff --git a/src/auto_archiver/modules/generic_extractor/__manifest__.py b/src/auto_archiver/modules/generic_extractor/__manifest__.py index b734421..c9b9dc4 100644 --- a/src/auto_archiver/modules/generic_extractor/__manifest__.py +++ b/src/auto_archiver/modules/generic_extractor/__manifest__.py @@ -62,7 +62,7 @@ If you are having issues with the extractor, you can review the version of `yt-d }, "end_means_success": { "default": True, - "help": "if True, any archived content will mean a 'success', if False this archiver will not return a 'success' stage; this is useful for cases when the yt-dlp will archive a video but ignore other types of content like images or text only pages that the subsequent archivers can retrieve.", + "help": "if True, any archived content will mean a 'success', if False this extractor will not return a 'success' stage; this is useful for cases when the yt-dlp will archive a video but ignore other types of content like images or text only pages that the subsequent extractors can retrieve.", "type": "bool", }, "allow_playlist": { diff --git a/src/auto_archiver/modules/selenium_extractor/__init__.py b/src/auto_archiver/modules/selenium_extractor/__init__.py deleted file mode 100644 index e69de29..0000000 diff --git a/src/auto_archiver/modules/selenium_extractor/__manifest__.py b/src/auto_archiver/modules/selenium_extractor/__manifest__.py deleted file mode 100644 index e69de29..0000000 diff --git a/src/auto_archiver/modules/selenium_extractor/selenium_extractor.py b/src/auto_archiver/modules/selenium_extractor/selenium_extractor.py deleted file mode 100644 index 1a02d9c..0000000 --- a/src/auto_archiver/modules/selenium_extractor/selenium_extractor.py +++ /dev/null @@ -1,15 +0,0 @@ - -from auto_archiver.core import Extractor -from auto_archiver.core import Metadata -from auto_archiver.core import Media - - -class SeleniumExtractor(Extractor): - def download(self, item: Metadata) -> Metadata | False: - """ - Downloads the media from the given URL and returns a Metadata object with the downloaded media. - - If the URL is not supported or the download fails, this method should return False. - - """ - pass diff --git a/tests/extractors/test_generic_extractor.py b/tests/extractors/test_generic_extractor.py index f737794..de5470b 100644 --- a/tests/extractors/test_generic_extractor.py +++ b/tests/extractors/test_generic_extractor.py @@ -97,7 +97,7 @@ class TestGenericExtractor(TestExtractorBase): ) def test_download_nonexistent_media(self, make_item, url): """ - Test to make sure that the extractor doesn't break on non-existend posts/media + Test to make sure that the extractor doesn't break on non-existent posts/media It should return 'False' """