add extractors files to favicon and title plugins

This commit is contained in:
Nick Sweeting
2024-11-17 20:11:43 -08:00
parent 1b8bafdb56
commit 2f30a35d2b
5 changed files with 101 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
__package__ = 'abx_plugin_title'
from abx_spec_extractor import BaseExtractor, ExtractorName
class TitleExtractor(BaseExtractor):
name: ExtractorName = 'title'
TITLE_EXTRACTOR = TitleExtractor()