refactor(protected-phrases): extract config and text normalization helpers

This commit is contained in:
2026-07-16 13:09:34 -04:00
parent 37d0ae487a
commit 6284d72af3
8 changed files with 145 additions and 95 deletions
@@ -0,0 +1,15 @@
"""Protected phrase extraction, storage, and runtime matching."""
from python.ebook_search.protected_phrases.config.lib import (
get_bad_ends,
get_bad_starts,
get_ignored_phrases,
get_most_common_words,
)
__all__ = [
"get_bad_ends",
"get_bad_starts",
"get_ignored_phrases",
"get_most_common_words",
]