mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-03 06:17:53 +10:00
18 lines
312 B
Python
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,
|
|
}
|