18 lines
379 B
Python
18 lines
379 B
Python
"""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_junk_tokens,
|
|
get_most_common_words,
|
|
)
|
|
|
|
__all__ = [
|
|
"get_bad_ends",
|
|
"get_bad_starts",
|
|
"get_ignored_phrases",
|
|
"get_junk_tokens",
|
|
"get_most_common_words",
|
|
]
|