26 lines
548 B
Python
26 lines
548 B
Python
from ..char_classes import (
|
|
ALPHA_UPPER,
|
|
CURRENCY,
|
|
LIST_ELLIPSES,
|
|
LIST_PUNCT,
|
|
LIST_QUOTES,
|
|
UNITS,
|
|
)
|
|
|
|
_list_punct = LIST_PUNCT + "፡ ። ፣ ፤ ፥ ፦ ፧ ፠ ፨".strip().split()
|
|
|
|
_suffixes = (
|
|
_list_punct
|
|
+ LIST_ELLIPSES
|
|
+ LIST_QUOTES
|
|
+ [
|
|
r"(?<=[0-9])\+",
|
|
# Tigrinya is written from Left-To-Right
|
|
r"(?<=[0-9])(?:{c})".format(c=CURRENCY),
|
|
r"(?<=[0-9])(?:{u})".format(u=UNITS),
|
|
r"(?<=[{au}][{au}])\.".format(au=ALPHA_UPPER),
|
|
]
|
|
)
|
|
|
|
TOKENIZER_SUFFIXES = _suffixes
|