default dropin introduced

pull/318/head
msramalho 2025-06-10 16:14:42 +01:00
rodzic 6d82655cc4
commit 809b8c7749
Nie znaleziono w bazie danych klucza dla tego podpisu
1 zmienionych plików z 18 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,18 @@
from auto_archiver.core.metadata import Metadata
from auto_archiver.modules.antibot_extractor_enricher.dropin import Dropin
class DefaultDropin(Dropin):
"""
A default fallback drop-in class for handling generic cases in the antibot extractor enricher module.
"""
@staticmethod
def suitable(url: str) -> bool:
return False
def open_page(self, url) -> bool:
return True
def add_extra_media(self, to_enrich: Metadata) -> tuple[int, int]:
return 0, 0