Files
ArchiveBox/archivebox/pkgs/abx-plugin-title/abx_plugin_title/__init__.py
2024-11-16 06:44:12 -08:00

18 lines
312 B
Python

import abx
# @abx.hookimpl
# def get_CONFIG():
# from .config import TITLE_EXTRACTOR_CONFIG
# return {
# 'title_extractor': TITLE_EXTRACTOR_CONFIG
# }
@abx.hookimpl
def get_EXTRACTORS():
from .extractors import TITLE_EXTRACTOR
return {
'title': TITLE_EXTRACTOR,
}