Spaces:
Sleeping
Sleeping
File size: 369 Bytes
cc678b9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | """Compatibility imports for the shared CarePath normalizers."""
from carepath_shared.normalize import (
contains_folded,
fold_for_match,
normalize_text,
parse_vietnamese_number_words,
strip_diacritics,
)
__all__ = [
"contains_folded",
"fold_for_match",
"normalize_text",
"parse_vietnamese_number_words",
"strip_diacritics",
]
|